module Row: sig .. end
Definition of rows
type [ `float of float | `int of int | `string of string ] 
Type row elements (or “cells”).
type item array 
A single row.
type [ `type_float | `type_int | `type_string ] 
Definition of the type of a cell.
type item_type array 
Definition of the type of a row.
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
Parse a 
Line.t into a row while specifying a 
format.
- If formatisNone(the default), then all the elements are
       put in`string _rows.
- The default cell separators are [' '; '\t'].
- If strictistrueandformatprovided, the only the
       format will be accepted. Ifstrictisfalse, rows matching
       only a prefix of theformatwill be accepted, and rows longer
       that theformatwill be also accepted (using`string _for
       the cells).
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
Type row elements (or “cells”).
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
A single row.
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
Definition of the type of a cell.
val t_type_of_sexp : Sexplib.Sexp.t -> t_type
val sexp_of_t_type : t_type -> Sexplib.Sexp.t
Definition of the type of a row.
Parse a Line.t into a row while specifying a format.
- If formatisNone(the default), then all the elements are
       put in`string _rows.
- The default cell separators are [' '; '\t'].
- If strictistrueandformatprovided, the only the
       format will be accepted. Ifstrictisfalse, rows matching
       only a prefix of theformatwill be accepted, and rows longer
       that theformatwill be also accepted (using`string _for
       the cells).
Write the row to a Line.t.