Array of header field names
Parse a chunk of CSV binary data into array records.
Optionalchunk: BufferSourceCSV binary chunk (BufferSource: Uint8Array, ArrayBuffer, or other TypedArray) to parse (optional for flush)
Optionaloptions: CSVParserParseOptionsParse options
Iterable iterator of parsed CSV records as arrays/tuples
Binary CSV Parser interface for array output format.
BinaryArrayCSVParser parses binary CSV data and returns records as arrays. Each record is returned as a tuple/array with values in header order.
This interface is designed to be easily implemented in Rust/WASM with clear type semantics.
Example