sig
  module Row :
    sig
      type item = [ `float of float | `int of int | `string of string ]
      type t = item array
      type item_type = [ `type_float | `type_int | `type_string ]
      type t_type = item_type array
      val of_line :
        ?separators:char list ->
        ?strict:bool ->
        ?format:t_type ->
        Biocaml_line.t ->
        (t,
         [> `wrong_format of
              [> `column_number
               | `float_of_string of string
               | `int_of_string of string ] *
              t_type * string ])
        Core.Result.t
      val to_line : sep:string -> t -> Biocaml_line.t
      val item_of_sexp : Sexplib.Sexp.t -> item
      val item_of_sexp__ : Sexplib.Sexp.t -> item
      val sexp_of_item : item -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> t
      val sexp_of_t : t -> Sexplib.Sexp.t
      val item_type_of_sexp : Sexplib.Sexp.t -> item_type
      val item_type_of_sexp__ : Sexplib.Sexp.t -> item_type
      val sexp_of_item_type : item_type -> Sexplib.Sexp.t
      val t_type_of_sexp : Sexplib.Sexp.t -> t_type
      val sexp_of_t_type : t_type -> Sexplib.Sexp.t
    end
end