Deedle


OptionalValue

Namespace: Deedle

Non-generic type that makes it easier to create OptionalValue<T> values from C# by benefiting the type inference for generic method invocations.

Static members

Static memberDescription
OptionalValue.Create(v)
Signature: v:'a -> OptionalValue<'a>
Type parameters: 'a Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates an OptionalValue<'T> that contains a value v

OptionalValue.Empty()
Signature: unit -> OptionalValue<'T>
Type parameters: 'T Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates an OptionalValue<'T> that does not contain a value

OptionalValue.OfNullable(v)
Signature: v:Nullable<'T> -> OptionalValue<'T>
Type parameters: 'T Attributes:
[<CompilerMessage("This method is not intended for use from F#.", 10001, IsHidden = true, IsError = false)>]

Creates an OptionalValue<T> from a nullable value of type T?

Fork me on GitHub