Class Column
A Column data structure that logically represents a column in a dataset
public class Column
- Inheritance
-
Column
- Inherited Members
Constructors
Column(Field, IList<Array>)
public Column(Field field, IList<Array> arrays)
Parameters
Column(Field, IList<IArrowArray>)
public Column(Field field, IList<IArrowArray> arrays)
Parameters
field
Fieldarrays
IList<IArrowArray>
Properties
Data
public ChunkedArray Data { get; }
Property Value
Field
public Field Field { get; }
Property Value
Length
public long Length { get; }
Property Value
Name
public string Name { get; }
Property Value
NullCount
public long NullCount { get; }
Property Value
Type
public IArrowType Type { get; }
Property Value
Methods
Slice(int)
public Column Slice(int offset)
Parameters
offset
int
Returns
Slice(int, int)
public Column Slice(int offset, int length)