Stog library reference documentation : Stog_graph.GMap
sig
  type key
  type 'a t
  val create : unit -> 'Stog_graph.GMap.t
  val get : 'Stog_graph.GMap.t -> Stog_graph.GMap.key -> 'a
  val set :
    'Stog_graph.GMap.t -> Stog_graph.GMap.key -> '-> 'Stog_graph.GMap.t
  val remove :
    'Stog_graph.GMap.t -> Stog_graph.GMap.key -> 'Stog_graph.GMap.t
  val fold :
    (Stog_graph.GMap.key -> '-> '-> 'b) ->
    'Stog_graph.GMap.t -> '-> 'b
  val iter :
    (Stog_graph.GMap.key -> '-> unit) -> 'Stog_graph.GMap.t -> unit
end