F# Vector extensionsVector Class |
Namespace: Deedle
[SerializableAttribute] public class Vector
The F# Vector extensionsVector type exposes the following members.
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ofOptionalValuesT(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.
| |
ofOptionalValuesT(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.
| |
ofOptionalValuesT(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.
| |
ofValuesT(IEnumerableT) |
Creates a vector that stores the specified data in an array.
Values such as `null` and `Double.NaN` are turned into missing values.
| |
ofValuesT(T) |
Creates a vector that stores the specified data in an array.
Values such as `null` and `Double.NaN` are turned into missing values.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |