Rest
...batches: readonly RecordBatch<T>[]Rest
...columns: {Rest
...columns: {Optional
data: RecordBatch<T> | RecordBatch<T>[]Optional
data: RecordBatch<T> | RecordBatch<T>[]Optional
offsets: Uint32ArrayReadonly
TArrayReadonly
TTypeReadonly
TValueReadonly
batchesThe contiguous RecordBatch RecordBatch
chunks of the Table rows.
Readonly
schemaThe number of null rows in this Table.
The number of columns in this Table.
The number of rows in this Table.
Get an element value by position.
The index of the element to read.
Retrieve the index of the first occurrence of a value in an Vector.
The value to locate in the Vector.
Optional
offset: numberThe index at which to begin the search. If offset is omitted, the search starts at index 0.
Construct a new Table containing only specified columns.
Names of columns to keep.
A new Table of columns matching the specified names.
Set an element value by position.
The index of the element to write.
The value to set.
Sets a child Vector by name.
The name of the child to overwrite.
A new Table with the supplied child for the specified name.
Sets a child Vector by index.
The index of the child to overwrite.
Optional
child: nullA new Table with the supplied child at the specified index.
Return a zero-copy sub-section of this Table.
Optional
begin: numberThe beginning of the specified portion of the Table.
Optional
end: numberThe end of the specified portion of the Table. This is exclusive of the element at the index 'end'.
Generated using TypeDoc
Tables are collections of Vectors and have a Schema. Use the convenience methods makeTable or tableFromArrays to create a table in JavaScript. To create a table from the IPC format, use tableFromIPC.