package xml-light

  1. Overview
  2. Docs

Module Xml_light_utilsSource

Sourcemodule StringMap : sig ... end
Sourcetype 'a map = 'a StringMap.t
Sourcetype 'a mut_map = 'a map ref
Sourceval create_map : unit -> 'a StringMap.t ref
Sourceval empty_map : unit -> 'a StringMap.t ref
Sourceval find_map : 'a StringMap.t ref -> StringMap.key -> 'a
Sourceval set_map : 'a StringMap.t ref -> StringMap.key -> 'a -> unit
Sourceval unset_map : 'a StringMap.t ref -> StringMap.key -> unit
Sourceval iter_map : (StringMap.key -> 'a -> unit) -> 'a StringMap.t ref -> unit
Sourceval fold_map : (StringMap.key -> 'a -> 'b -> 'b) -> 'a StringMap.t ref -> 'b -> 'b
Sourceval mem_map : 'a StringMap.t ref -> StringMap.key -> bool