Vector
Type that provides access to creating vectors (represented as arrays)
Static members
Static member | Description |
Vector.Create(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.Create(data)
Signature:(data:'T []) -> IVector<'T>
Type parameters: 'T |
Creates a vector that stores the specified data in an array.
Values such as |
Vector.CreateMissing(data)
Signature:data:seq<Nullable<'T>> -> IVector<'T>
Type parameters: 'T |
Creates a vector that stores the specified data in an array.
Values such as |
Vector.CreateMissing(data)
Signature:data:seq<OptionalValue<'T>> -> IVector<'T>
Type parameters: 'T |
Creates a vector that stores the specified data in an array.
Values such as |