Create(name, rows, count)
Signature: (name:string * rows:ColumnValues * count:int) -> Column
|
|
Create(name, rows, count)
Signature: (name:string * rows:seq<DateTime> * count:int option) -> Column
|
Creates a column from string name, a sequence of values and an optional count of the number of values.
|
Create(name, rows, count)
Signature: (name:string * rows:seq<bool> * count:int option) -> Column
|
Creates a column from string name, a sequence of values and an optional count of the number of values.
|
Create(name, rows, count)
Signature: (name:string * rows:seq<string> * count:int option) -> Column
|
Creates a column from string name, a sequence of values and an optional count of the number of values.
|
Create(name, rows, count)
Signature: (name:string * rows:seq<float> * count:int option) -> Column
|
Creates a column from string name, a sequence of values and an optional count of the number of values.
|
Create(name, rows, count)
Signature: (name:string * rows:seq<int> * count:int option) -> Column
|
Creates a column from string name, a sequence of values and an optional count of the number of values.
|
CreateFromUntyped(name, rows)
Signature: (name:string * rows:Array) -> Column
|
|
CreateLazy(name, rows, count)
Signature: (name:string * rows:Lazy<ImmutableArray<DateTime>> * count:int) -> Column
|
|
CreateLazy(name, rows, count)
Signature: (name:string * rows:Lazy<ImmutableArray<bool>> * count:int) -> Column
|
|
CreateLazy(name, rows, count)
Signature: (name:string * rows:Lazy<ImmutableArray<string>> * count:int) -> Column
|
|
CreateLazy(name, rows, count)
Signature: (name:string * rows:Lazy<ImmutableArray<float>> * count:int) -> Column
|
|
CreateLazy(name, rows, count)
Signature: (name:string * rows:Lazy<ImmutableArray<int>> * count:int) -> Column
|
|