B0_finiA minimal fINI parser.
type value = atom listThe type for values.
type name = atomThe type for names. Non-empty atoms.
type qname = name listThe type for qualified key names.
val pp_qname : Stdlib.Format.formatter -> qname -> unitpp_qname formats qualified key names for inspection.
val empty : docempty is the empty document.
val of_string : ?file:string -> string -> (doc, string) Stdlib.resultof_string s is a fINI document from s. file is used to report errors it defaults to "-".
find_section sec doc is the section sec expressed as a document. Bindings of section sec become toplevel bindings and subsections of sec become toplevel section. If sec also maps a key in d, it is mapped by the empty qname. None is returned if there is no section sec in doc. See also get_section.
get_section is like find_section but returns empty if the section name does not exist in the document.