You can search for identifiers within the package.
in-package search v0.2.0
SZXX
Xlsx.Expert
module SST : sig ... end
type delayed_string = {
location : location;
sst_index : Base.string;
}
val sexp_of_delayed_string : delayed_string -> Sexplib0.Sexp.t
type 'a status =
| Available of 'a
| Delayed of delayed_string
val sexp_of_status : ('a -> Sexplib0.Sexp.t) -> 'a status -> Sexplib0.Sexp.t
val parse_row_without_sst : 'a cell_parser -> Xml.DOM.element row -> 'a status row
Convert a raw unparsed row into a more usable "wrapped" row
val unwrap_status : 'a cell_parser -> SST.t -> 'a status row -> 'a row
Unwrap a row, resolving all SST references
val parse_row_with_sst : SST.t -> 'a cell_parser -> Xml.DOM.element row -> 'a row