package ocaml-inifiles

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
exception Invalid_section of string
exception Invalid_element of string
exception Missing_section of string
exception Missing_element of string
exception Ini_parse_error of int * string
type attribute_specification = {
  1. atr_name : string;
  2. atr_required : bool;
  3. atr_default : string list option;
  4. atr_validator : Pcre.regexp option;
}
type section_specification = {
  1. sec_name : string;
  2. sec_required : bool;
  3. sec_attributes : attribute_specification list;
}
type specification = section_specification list
class inifile : ?spec:specification -> string -> object ... end
val fold : ('a -> inifile -> 'a) -> string -> 'a -> 'a