IVectorBuilder
Namespace: Deedle.Vectors
Represents an object that can construct vector values by processing
the "mini-DSL" representation VectorConstruction
.
Instance members
Instance member | Description |
x.AsyncBuild(arg1, arg2, arg3)
Signature: (IAddressingScheme * VectorConstruction * IVector<'T> []) -> Async<IVector<'T>>
Modifiers: abstract Type parameters: 'T |
Asynchronous version of |
x.Build(arg1, arg2, arg3)
Signature: (IAddressingScheme * VectorConstruction * IVector<'T> []) -> IVector<'T>
Modifiers: abstract Type parameters: 'T |
Apply a vector construction to a given vector. The second parameter
is an array of arguments ("variables") that may be referenced from the
|
x.Create(arg1)
Signature: ('T []) -> IVector<'T>
Modifiers: abstract Type parameters: 'T |
Create a vector from an array containing values. The values may
still represent missing values and the vector should handle this.
For example |
x.CreateMissing(arg1)
Signature: (OptionalValue<'T> []) -> IVector<'T>
Modifiers: abstract Type parameters: 'T |
Create a vector from an array containing values that may be missing.
Even if a value is passed, it may be a missing value such as |