ignore
Function Signature
'T option -> unit optionExamples
Example 1
let result : unit option =
Some 42
|> Option.ignore
// Some ()Example 2
let result : unit option =
Some "hello"
|> Option.ignore
// Some ()Example 3
Last updated