Other Functions
defaultValue
Returns the contained value if Some, otherwise returns the provided value
Function Signature
'a -> Task<'a option> -> Task<'a>
defaultWith
Returns the contained value if Some, otherwise evaluates the given function and returns the result.
Function Signature
(unit -> 'a) -> Task<'a option> -> Task<'a>
some
Wraps the provided value in an Task<'a option>
Function Signature
'a -> Task<'a option>
Last updated