Vector
Namespace: Deedle
Parent Module: F# Vector extensions
Type that provides a simple access to creating vectors represented
using the built-in ArrayVector type that stores the data in a
continuous block of memory.
Static members
| Static member | Description |
Vector.ofOptionalValues(data)
Signature: (data:OptionalValue<'T> []) -> IVector<'T>
Type parameters: 'T
|
Missing values can be specified explicitly as OptionalValue.Missing, but
other values such as null and Double.NaN are turned into missing values too.
|
Vector.ofOptionalValues(data)
Signature: data:seq<OptionalValue<'T>> -> IVector<'T>
Type parameters: 'T
|
Missing values can be specified explicitly as OptionalValue.Missing, but
other values such as null and Double.NaN are turned into missing values too.
|
Vector.ofOptionalValues(data)
Signature: (data:seq<'T option>) -> IVector<'T>
Type parameters: 'T
|
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.
|
Vector.ofValues(data)
Signature: data:seq<'T> -> IVector<'T>
Type parameters: 'T
|
Creates a vector that stores the specified data in an array.
Values such as null and Double.NaN are turned into missing values.
|
Vector.ofValues(data)
Signature: (data:'T []) -> IVector<'T>
Type parameters: 'T
|
Creates a vector that stores the specified data in an array.
Values such as null and Double.NaN are turned into missing values.
|