Click or drag to resize
F# Vector extensions (core) Class
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>`. [category:Vectors and indices]
Inheritance Hierarchy
SystemObject
  DeedleF# Vector extensions (core)

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static class F# Vector extensions (core)

The F# Vector extensions (core) type exposes the following members.

Methods
  NameDescription
Public methodStatic memberget_DataSequenceT
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.)
Public methodStatic memberSelectT, R
Apply the specified function to all values stored in the vector and return a new vector (not necessarily of the same representation) with the results. The function skips missing values.
Top
See Also