| Name | Description |
---|
| SparseT(Int32) |
Create a sparse vector of T with the given size.
|
| SparseT(SparseVectorStorageT) |
Create a new sparse 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.
|
| SparseT(Int32, T) |
Create a new sparse vector and initialize each value using the provided value.
|
| SparseT(Int32, FuncInt32, T) |
Create a new sparse vector and initialize each value using the provided init function.
|