Readonly
batchesThe contiguous RecordBatch RecordBatch
chunks of the Table rows.
Readonly
schemaReadonly
TArrayReadonly
TTypeReadonly
TValueThe number of null rows in this Table.
The number of columns in this Table.
The number of rows in this Table.
Iterator for rows in this Table.
Get an element value by position.
The index of the element to read. A negative index will count back from the last element.
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.
Check whether an element is null.
The index at which to read the validity bitmap.
Set an element value by position.
The index of the element to write.
The value to set.
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 JavaScript Array of the Table rows.
An Array of Table rows.
Returns a string representation of the Table rows.
A string representation of the Table rows.
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.