arquero
Version:
Query processing and transformation of array-backed data tables.
8 lines (7 loc) • 400 B
TypeScript
/**
* Return a potentially filtered list of column names.
* @param {import('../../table/Table.js').Table} table A data table.
* @param {import('../types.js').ColumnSelectOptions} names The column names to select.
* @returns {string[]} The selected column names.
*/
export function columns(table: import("../../table/Table.js").Table, names: import("../types.js").ColumnSelectOptions): string[];