Click or drag to resize
F# Vector extensionsVector Class
Type that provides a simple access to creating vectors represented using the built-in `ArrayVector` type that stores the data in a continuous block of memory.
Inheritance Hierarchy
SystemObject
  DeedleF# Vector extensionsVector

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
[SerializableAttribute]
public class Vector

The F# Vector extensionsVector type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberofOptionalValuesT(IEnumerableFSharpOptionT)
Creates a vector that stores the specified data in an array. Missing values can be specified explicitly as `None`, but other values such as `null` and `Double.NaN` are turned into missing values too.
Public methodStatic memberofOptionalValuesT(OptionalValueT)
Missing values can be specified explicitly as `OptionalValue.Missing`, but other values such as `null` and `Double.NaN` are turned into missing values too.
Public methodStatic memberofOptionalValuesT(IEnumerableOptionalValueT)
Missing values can be specified explicitly as `OptionalValue.Missing`, but other values such as `null` and `Double.NaN` are turned into missing values too.
Public methodStatic memberofValuesT(IEnumerableT)
Creates a vector that stores the specified data in an array. Values such as `null` and `Double.NaN` are turned into missing values.
Public methodStatic memberofValuesT(T)
Creates a vector that stores the specified data in an array. Values such as `null` and `Double.NaN` are turned into missing values.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also