module Row = Csv.Rowinclude Deprecated_intf.Deprecated with module Row := Rowmodule Header = Headermodule Row : Delimited_parsing__.Row_intf.Rowinclude Delimited_parsing__.Character_separated_without_quoting_intf.Character_separated_without_quoting with module Row := Rowmodule Row : Delimited_parsing__.Row_intf.RowAll readers defined below will raise if they encounter unparsable content.
val of_reader : (Header.t, ?quote:char ‑> sep:char ‑> Async.Reader.t ‑> Row.t Async.Pipe.Reader.t) Delimited_parsing__.Shared.readerof_reader ?quote ?strip ?skip_lines ~sep ~header r returns a row pipe based on data
read from the provided reader. sep is used as the separator between fields, and is
assumed to be escaped with \ unless quote is given.
val create_reader : (Header.t, ?quote:char ‑> sep:char ‑> string ‑> Row.t Async.Pipe.Reader.t Async.Deferred.t) Delimited_parsing__.Shared.readercreate_reader ?strip ?skip_lines ~header filename same as of_reader, but creates
the reader for you
module Csv : Delimited_parsing__.Deprecated_csv_intf.Deprecated_csv with module Row := Rowmodule Positional : Delimited_parsing__.Positional_intf.Positional with module Row := Row