arquero
Version:
Query processing and transformation of array-backed data tables.
10 lines (9 loc) • 529 B
TypeScript
/**
* Format a table as binary data in the Apache Arrow IPC format.
* @param {import('../table/Table.js').Table} data The table data
* @param {import('./types.js').ArrowIPCFormatOptions} [options]
* The Arrow IPC formatting options. Set the *format* option to `'stream'`
* or `'file'` to specify the IPC format.
* @return {Uint8Array} A new Uint8Array of Arrow-encoded binary data.
*/
export function toArrowIPC(data: import("../table/Table.js").Table, options?: import("./types.js").ArrowIPCFormatOptions): Uint8Array;