Click or drag to resize
F# Vector extensionsVectorofOptionalValuesT Method (IEnumerableFSharpOptionT)
Creates a vector that stores the specified data in an array. Missing values can be specified explicitly as `None`, but other values such as `null` and `Double.NaN` are turned into missing values too.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static IVector<T> ofOptionalValues<T>(
	IEnumerable<FSharpOption<T>> data
)

Parameters

data
Type: System.Collections.GenericIEnumerableFSharpOptionT

[Missing <param name="data"/> documentation for "M:Deedle.F# Vector extensions.Vector.ofOptionalValues``1(System.Collections.Generic.IEnumerable{Microsoft.FSharp.Core.FSharpOption{``0}})"]

Type Parameters

T

Return Value

Type: IVectorT

[Missing <returns> documentation for "M:Deedle.F# Vector extensions.Vector.ofOptionalValues``1(System.Collections.Generic.IEnumerable{Microsoft.FSharp.Core.FSharpOption{``0}})"]

See Also