ofNull
Namespace: FsToolkit.ErrorHandling
Transforms a nullableValue value to 'nullableValue Option.
Function Signature
'nullableValue -> 'nullableValue OptionExamples
Example 1
let opt = Option.ofNull 1
// Some 1Example 2
let opt = Option.ofNull null
// NoneLast updated