Module Read.Row
Whole-row parsing.
type 'a builder_t
= 'a t
include module type of Delimited_kernel__.Row
val get_conv_exn : t -> string -> Core_kernel.Source_code_position.t -> (string -> 'a) -> 'a
get_conv_exn t header [%here] conv
extract the cell with columnheader
fromrow
and convert it usingconv
. If there is an error the error is raised includingrow
header
error
and the source code position (%here
).
val get_exn : t -> string -> string
get_exn t header
return the column of the row corresponding to header
val get_conv_opt_exn : t -> string -> Core_kernel.Source_code_position.t -> (string -> 'a) -> 'a option
get_conv_opt_exn
is likeget_conv_exn
, but empty strings are converted toNone
. Missing headers raise exceptions.
val get : t -> string -> string option
get t header
same as get_exn, but returns an option when the header was not found
val get_opt_exn : t -> string -> string option
get_opt_exn
is likeget_exn
, but empty strings are converted toNone
. Missing headers raise exceptions.
val nth_exn : t -> int -> string
nth_exn t i
return the ith column of t (indexed from 0)
val nth_conv_exn : t -> int -> Core_kernel.Source_code_position.t -> (string -> 'a) -> 'a
nth_conv_exn t i [%here] conv
extract the ith column oft
and convert it usingconv
. If there is an error the error is raised includingrow
i
error
and the source code position (%here
).
val nth : t -> int -> string option
nth t i
same as nth_exn, but returns an option in the case where t does not have at least i - 1 columns
val nth_conv : t -> int -> (string -> 'a) -> 'a option
nth_conv
is likenth_conv_exn
, but returnsNone
if there is an error.
val to_list : t -> string list
to_list t
return all columns in the order they appear in the file
val to_array : t -> string array
to_array t
return all columns in the order they appear in the file
val length : t -> int
length t
returns number of fields in this row
val headers : t -> int Core_kernel.String.Map.t
headers t
return the header mapping (header -> position) available for the table this row is from.list_of_headers
is a list in the same order as in input file.
val list_of_headers : t -> string list
val is_empty : t -> bool
is_empty t
return true if the row contains only empty strings
val to_string : t -> string
val sexp_of_t : t -> Core_kernel.Sexp.t
val fold : t -> init:'acc -> f:('acc -> header:string -> data:string -> 'acc) -> 'acc
val iter : t -> f:(header:string -> data:string -> unit) -> unit
val create : int Core_kernel.String.Table.t -> string array -> t
val create' : int Core_kernel.String.Map.t -> string array -> t
val equal : t -> t -> bool
val compare : t -> t -> int
module Expert = Delimited_kernel__.Row.Expert