VectorExtensions
Module with extensions for generic vector type. Given vec of type IVector<T>,
the extension property vec.DataSequence returns all data of the vector converted
to the "least common denominator" data structure - IEnumerable<T>.
Type extensions
| Type extension | Description |
iVector.DataSequence
Signature:seq<OptionalValue<'T>>
|
Returns the data of the vector as a lazy sequence. (This preserves the order of elements in the vector and so it also returns missing values.) |