Vector
  Namespace: Deedle
  Parent Module: F# Vector extensions
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.
 
  Static members
  
    
      | Static member | Description | 
    
    
      
        | 
            ofOptionalValues(data)
          
            Signature: data:seq<OptionalValue<'T>> -> IVector<'T>Type parameters: 'T
 |     Missing values can be specified explicitly as OptionalValue.Missing, but 
other values such asnullandDouble.NaNare turned into missing values too. | 
      
        | 
            ofOptionalValues(data)
          
            Signature: (data:seq<'T option>) -> IVector<'T>Type parameters: 'T
 |     Creates a vector that stores the specified data in an array.
Missing values can be specified explicitly as None, but other values 
such asnullandDouble.NaNare turned into missing values too. | 
      
        | 
            ofValues(data)
          
            Signature: data:seq<'T> -> IVector<'T>Type parameters: 'T
 |     Creates a vector that stores the specified data in an array.
Values such as nullandDouble.NaNare turned into missing values. | 
      
        | 
            ofValues(data)
          
            Signature: (data:'T []) -> IVector<'T>Type parameters: 'T
 |     Creates a vector that stores the specified data in an array.
Values such as nullandDouble.NaNare turned into missing values. |