proper csv file parsing is different than general delimited file parsing and requires special handling code
create_manual ?strip ~header r
returns a function that allows you to
feed strings into it, receiving back the rows as they are finished.
It is explicitly allowed to pass Eof, then more data. This is useful when tailing a file or when joining multiple files together.
of_reader ?strip ~header r
returns a row pipe based on data read from
the provided reader.
create_reader ?strip ~header filename
same as of_reader, but creates the reader
for you