package plato

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Configparser.ConfigParserSource

Parameters

Signature

Sourcemodule Map = StringMap
Sourcetype key = string
Sourcetype in_value = string option Map.t
Sourcetype t
Sourcemodule Interpolation : INTERPOLATION with module Map = Map with module Map = StringMap
include Collections.Abc.MUTABLE_MAPPING with type key := key and type in_value := in_value and type out_value := proxy and type t := t
include Collections.Abc.MAPPING with type key := key and type value := proxy and type t := t
include Collections.Abc.COLLECTION with type key := key and type e := proxy and type t := t and type i := key
include Collections.Abc.SIZED with type t := t
Sourceval len : t -> int
include Collections.Abc.ITERABLE with type e := proxy and type t := t and type key := key
Sourceval iter : (key -> proxy -> unit) -> t -> unit
Sourceval fold : (key -> proxy -> 'acc -> 'acc) -> t -> 'acc -> 'acc
include Collections.Abc.CONTAINER with type t := t and type i := key
Sourceval contains : key -> t -> bool
Sourceval getitem : key -> t -> proxy
Sourceval getitem_opt : key -> t -> proxy option
Sourceval keys : t -> key list
Sourceval items : t -> (key * proxy) list
Sourceval values : t -> proxy list
Sourceval eq : t -> t -> bool
Sourceval ne : t -> t -> bool
Sourceval setitem : key -> in_value -> t -> unit
Sourceval delitem : key -> t -> unit
Sourceval pop : key -> t -> proxy
Sourceval popitem : t -> key * proxy
Sourceval clear : t -> unit
Sourceval update : t -> t -> unit
Sourceval setdefault : key -> in_value -> t -> proxy
Sourceval get_boolean_states : t -> (string * bool) list
Sourceval set_boolean_states : t -> (string * bool) list -> unit
Sourceval get_optionxform : t -> string -> string
Sourceval set_optionxform : t -> (string -> string) -> unit
Sourceval get_sectcre : t -> Re.re
Sourceval set_sectcre : t -> Re.re -> unit
Sourceval make : ?defaults:string option Map.t -> ?allow_no_value:bool -> ?delimiters:string list -> ?comment_prefixes:string list -> ?inline_comment_prefixes:string list -> ?strict:bool -> ?empty_lines_in_values:bool -> ?default_section:string -> unit -> t
Sourceval defaults : t -> string option Map.t
Sourceval sections : t -> string list
Sourceval options : t -> string -> string list
Sourceval read : t -> string list -> string list
Sourceval read_file : t -> ?source:string -> in_channel -> unit
Sourceval read_string : t -> ?source:string -> string -> unit
Sourceval getint : t -> ?raw:bool -> ?vars:string option Map.t -> ?fallback:int -> string -> string -> int
Sourceval getbool : t -> ?raw:bool -> ?vars:string option Map.t -> ?fallback:bool -> string -> string -> bool
Sourceval getfloat : t -> ?raw:bool -> ?vars:string option Map.t -> ?fallback:float -> string -> string -> float
Sourceval popitem_dict : t -> string * string option Map.t
Sourceval has_option : t -> string -> string -> bool
Sourceval write : t -> ?space_around_delimiters:bool -> out_channel -> unit
OCaml

Innovation. Community. Security.