Table.RowDefinition of rows
Type row elements (or โcellsโ).
type t = item arrayA single row.
type t_type = item_type arrayDefinition of the type of a row.
module Error : sig ... endval of_line :
?separators:char list ->
?strict_row_length:bool ->
?strict_cell_type:bool ->
?format:t_type ->
Line.t ->
(t, [> Error.line_parsing ]) Core_kernel.Result.tParse a Line.t into a row while specifying a format.
format is None (the default), then all the elements are put in `string _ rows.[' '; '\t'].strict_row_length is true and format provided, then check that the number of columns is at least the one of the format.strict_cell_type is true and format provided, then check that each cell has the exactly right format.Transform.t Creationsmodule Transform : sig ... endval item_of_sexp : Sexplib.Sexp.t -> itemval sexp_of_item : item -> Sexplib.Sexp.tval t_of_sexp : Sexplib.Sexp.t -> tval sexp_of_t : t -> Sexplib.Sexp.tval item_type_of_sexp : Sexplib.Sexp.t -> item_typeval sexp_of_item_type : item_type -> Sexplib.Sexp.tval t_type_of_sexp : Sexplib.Sexp.t -> t_typeval sexp_of_t_type : t_type -> Sexplib.Sexp.t