Readonly
numThe number of batches in the Table
Readonly
schemaAccess the Table's Schema
.
Export this Table to FFI structs according to the Arrow C Data Interface.
This method does consume the Table, so the original Table will be
inaccessible after this call. You must still call FFITable.free
after
you've finished using the FFITable.
Access a RecordBatch from the Table by index.
The positional index of the RecordBatch to retrieve.
a RecordBatch or null
if out of range.
Export this Table to FFI structs according to the Arrow C Data Interface.
This method does not consume the Table, so you must remember to call Table.free
to release the resources. The underlying arrays are reference counted, so
this method does not copy data, it only prevents the data from being released.
Static
fromIPCFileStatic
fromIPCStreamGenerated using TypeDoc
A Table in WebAssembly memory conforming to the Apache Arrow spec.
A Table consists of one or more
RecordBatch
objects plus aSchema
that each RecordBatch conforms to.