Vector Type
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
|
Full Usage:
Vector.ofOptionalValues data
Parameters:
OptionalValue<'T>[]
Returns: IVector<'T>
Modifiers: inline 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.
|
Full Usage:
Vector.ofOptionalValues data
Parameters:
OptionalValue<'T> seq
Returns: IVector<'T>
Modifiers: inline 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.
|
Full Usage:
Vector.ofOptionalValues data
Parameters:
'T option seq
Returns: IVector<'T>
Modifiers: inline 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.
|
Full Usage:
Vector.ofValues data
Parameters:
'T seq
Returns: IVector<'T>
Modifiers: inline 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.
|
Full Usage:
Vector.ofValues data
Parameters:
'T[]
Returns: IVector<'T>
Modifiers: inline 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.
|
Deedle