Assembles tokens into CSV records.
Optionalinput: AnyToken | Iterable<AnyToken, any, any>A single token or an iterable of tokens. Omit to flush remaining data.
Optionaloptions: CSVRecordAssemblerAssembleOptionsAssembler options.
An iterable iterator of CSV records.
Flexible CSV Object Record Assembler implementation.
An optimized assembler that works with unified field tokens. No switch statement needed - simply processes each field and checks the
delimiterproperty to determine when a record is complete.Remarks
This implementation provides better performance by eliminating the token type switch statement and reducing token iteration count by 50%.