arquero
Version:
Query processing and transformation of array-backed data tables.
10 lines (9 loc) • 505 B
TypeScript
/**
* Create an Apache Arrow table for an input table.
* @param {import('../table/Table.js').Table} table
* An input Arquero table to convert to Arrow format.
* @param {import('./types.js').ArrowFormatOptions} [options]
* Encoding options, including column data types.
* @return {import('@uwdata/flechette').Table} An Arrow Table instance.
*/
export function toArrow(table: import("../table/Table.js").Table, options?: import("./types.js").ArrowFormatOptions): import("@uwdata/flechette").Table;