1010Data Insights Platform .NET SDK
|
Represents an int / long / int128 / double / String column. More...
Classes | |
class | Computation |
Visitor pattern dispatcher for functions. More... | |
class | Generic |
Generic Column. More... | |
class | Information |
Nested container class for information describing a Column. More... | |
class | OfDoubles |
A column of double values. More... | |
class | OfInt128s |
column of Int128 values. More... | |
class | OfInts |
column of int values. More... | |
class | OfLongs |
column of long values. More... | |
class | OfStrings |
A column of String values. More... | |
class | Operation |
Visitor pattern dispatcher for void functions. More... | |
Public Member Functions | |
abstract Object | ItemAt (long index) |
Get the object at the index'th row. More... | |
abstract Result | Accept< Result > (Computation< Result > c) |
Visitor pattern for Columns. More... | |
abstract void | Accept (Operation o) |
Visitor pattern for Columns. More... | |
Public Attributes | |
readonly Information | Info |
Information about the Column. | |
Properties | |
IDownloadPolicy | Policy [get, set] |
Policy for how data is downloaded on subscripting or enumerating. | |
Table | HostTable [get, set] |
This Column's Table. | |
String | Name [get] |
Name of the Column. | |
abstract IEnumerable< String > | AsStrings [get] |
Iterates over column data and casts to String. | |
![]() | |
String | Name [get] |
Gets the name of this item. | |
Represents an int / long / int128 / double / String column.
|
pure virtual |
Get the object at the index'th row.
index | The index position to obtain. |
Implemented in TenTenSDK.Column.Generic< T >.
|
pure virtual |
Visitor pattern for Columns.
c | Computation to perform on this Column |
Implemented in TenTenSDK.Column.OfDoubles.
|
pure virtual |
Visitor pattern for Columns.
Implemented in TenTenSDK.Column.OfDoubles.