Delimited_parsing contains parsers for three common file formats:
module Character_separated_without_quoting : sig ... endCharacter_separated_without_quoting parses fields separated by a character, where
fields may contain escaped characters (e,g, \n) but fields may not be quoted (e.g.,
"foo bar").
module Csv : sig ... endCsv parses character-separated values where fields may be quoted and quotation
marks within quoted fields are escaped with another quotation mark, MSExcel-style.
For upgrading or maintaining legacy code.
module Replace_deprecated_csv : sig ... endReplace_deprecated_csv is a drop-in replacement for existing users of
Async_extended.Delimited. It is faster, tested, and supported.
Modules shared between multiple parsers.
module Header : sig ... endmodule Row : sig ... endThe following are exposed only for backwards-compatibility or testing.
module Deprecated : sig ... endmodule Deprecated_intf : sig ... endmodule Deprecated_csv : sig ... end