Array of header field names (determines array length and named tuple structure)
Assembles tokens into CSV records in array format.
Optionalinput: Token | Iterable<Token, any, any>A token or iterable of tokens to be assembled. Omit to flush remaining data.
Optionaloptions: CSVRecordAssemblerAssembleOptionsAssembler options.
An iterable iterator of CSV records as arrays/tuples.
CSV Array Record Assembler interface.
CSVArrayRecordAssembler assembles tokens into CSV records in array format. 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