| Name | Description |
---|
| DenseT(T) |
Create a dense vector of T that is directly bound to the specified array.
|
| DenseT(DenseVectorStorageT) |
Create a new dense vector straight from an initialized vector storage instance.
The storage is used directly without copying.
Intended for advanced scenarios where you're working directly with
storage for performance or interop reasons.
|
| DenseT(Int32) |
Create a dense vector of T with the given size.
|
| DenseT(Int32, T) |
Create a new dense vector and initialize each value using the provided value.
|
| DenseT(Int32, FuncInt32, T) |
Create a new dense vector and initialize each value using the provided init function.
|