()
| 289 | } |
| 290 | |
| 291 | func ExampleOption_FlatMap_none() { |
| 292 | none := None[int]() |
| 293 | result := none.FlatMap(func(i int) Option[int] { |
| 294 | return Some(21) |
| 295 | }) |
| 296 | |
| 297 | fmt.Println(result.IsPresent(), result.OrEmpty()) |
| 298 | // Output: false 0 |
| 299 | } |
| 300 | |
| 301 | func ExampleOption_MarshalJSON_some() { |
| 302 | type test struct { |