package shcaml

  1. Overview
  2. Docs
type options = {
  1. field_sep : char;
  2. record_sep : char;
  3. trim_space : bool;
  4. rec_backslash : bool;
  5. rec_quotation : bool;
  6. rec_double_double : bool;
  7. rec_cr : bool;
  8. rec_escapes : bool;
  9. max_fields : int;
}
val default_options : options
val reader : ?options:options -> Reader.t
val splitter : ?options:options -> string -> string array
val output_field : ?options:options -> out_channel -> string -> unit
val output_line : ?options:options -> out_channel -> string array -> unit