Array of header field names
Parse a chunk of CSV string data into array records.
Optionalchunk: stringCSV string chunk to parse (optional for flush)
Optionaloptions: CSVParserParseOptionsParse options
Iterable iterator of parsed CSV records as arrays/tuples
String CSV Parser interface for array output format.
StringArrayCSVParser parses string 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