Vector
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:seq<OptionalValue<'T>> -> IVector<'T>
Type parameters: 'T |
Missing values can be specified explicitly as |
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 |
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 |
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 |