Module Csv_tool_lib.Csv_common

type t = {
  1. header : string list;
  2. lines : string list list;
}
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t -> t -> int
include Sexplib0.Sexpable.S with type t := t
include Sexplib0.Sexpable.Of_sexp with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
include Sexplib0.Sexpable.Sexp_of with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.t
type csv := t
val empty : t
val print_csv : ?separator:char -> t -> unit
val load : ?separator:char -> string -> t
val load_all : ?separator:char -> string list -> t list
module Or_file : sig ... end
val of_csvlib_csv : string list list -> no_header:bool -> t

of_csvlib_csv rows assumes the first row is a header if no_header = false. Regardless, it raises if rows = [].