Module Delimited_parsing.Row

include Delimited_parsing__.Row_intf.Row
type t
val get_conv_exn : t ‑> string ‑> Core.Source_code_position.t ‑> (string ‑> 'a) ‑> 'a
val get_exn : t ‑> string ‑> string
val get_conv_opt_exn : t ‑> string ‑> Core.Source_code_position.t ‑> (string ‑> 'a) ‑> 'a option
val get : t ‑> string ‑> string option
val get_opt_exn : t ‑> string ‑> string option
val nth_exn : t ‑> int ‑> string
val nth_conv_exn : t ‑> int ‑> Core.Source_code_position.t ‑> (string ‑> 'a) ‑> 'a
val nth : t ‑> int ‑> string option
val to_list : t ‑> string list
val to_array : t ‑> string array
val length : t ‑> int
val headers : t ‑> int Core.String.Table.t
val is_empty : t ‑> bool
val to_string : t ‑> string
val sexp_of_t : t ‑> Core.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.String.Table.t ‑> string array ‑> t
val equal : t ‑> t ‑> bool
val compare : t ‑> t ‑> int