sig
  module Hashtbl :
    sig
      type ('a, 'b) t = ('a, 'b) Hashtbl.t
      val create : int -> ('a, 'b) MoreLabels.Hashtbl.t
      val clear : ('a, 'b) MoreLabels.Hashtbl.t -> unit
      val add : ('a, 'b) MoreLabels.Hashtbl.t -> key:'-> data:'-> unit
      val copy :
        ('a, 'b) MoreLabels.Hashtbl.t -> ('a, 'b) MoreLabels.Hashtbl.t
      val find : ('a, 'b) MoreLabels.Hashtbl.t -> '-> 'b
      val find_all : ('a, 'b) MoreLabels.Hashtbl.t -> '-> 'b list
      val mem : ('a, 'b) MoreLabels.Hashtbl.t -> '-> bool
      val remove : ('a, 'b) MoreLabels.Hashtbl.t -> '-> unit
      val replace :
        ('a, 'b) MoreLabels.Hashtbl.t -> key:'-> data:'-> unit
      val iter :
        f:(key:'-> data:'-> unit) ->
        ('a, 'b) MoreLabels.Hashtbl.t -> unit
      val fold :
        f:(key:'-> data:'-> '-> 'c) ->
        ('a, 'b) MoreLabels.Hashtbl.t -> init:'-> 'c
      val length : ('a, 'b) MoreLabels.Hashtbl.t -> int
      module type HashedType = Hashtbl.HashedType
      module type S =
        sig
          type key
          and 'a t
          val create : int -> 'MoreLabels.Hashtbl.S.t
          val clear : 'MoreLabels.Hashtbl.S.t -> unit
          val copy : 'MoreLabels.Hashtbl.S.t -> 'MoreLabels.Hashtbl.S.t
          val add :
            'MoreLabels.Hashtbl.S.t ->
            key:MoreLabels.Hashtbl.S.key -> data:'-> unit
          val remove :
            'MoreLabels.Hashtbl.S.t -> MoreLabels.Hashtbl.S.key -> unit
          val find :
            'MoreLabels.Hashtbl.S.t -> MoreLabels.Hashtbl.S.key -> 'a
          val find_all :
            'MoreLabels.Hashtbl.S.t -> MoreLabels.Hashtbl.S.key -> 'a list
          val replace :
            'MoreLabels.Hashtbl.S.t ->
            key:MoreLabels.Hashtbl.S.key -> data:'-> unit
          val mem :
            'MoreLabels.Hashtbl.S.t -> MoreLabels.Hashtbl.S.key -> bool
          val iter :
            f:(key:MoreLabels.Hashtbl.S.key -> data:'-> unit) ->
            'MoreLabels.Hashtbl.S.t -> unit
          val fold :
            f:(key:MoreLabels.Hashtbl.S.key -> data:'-> '-> 'b) ->
            'MoreLabels.Hashtbl.S.t -> init:'-> 'b
          val length : 'MoreLabels.Hashtbl.S.t -> int
        end
      module Make :
        functor (H : HashedType->
          sig
            type key = H.t
            and 'a t
            val create : int -> 'a t
            val clear : 'a t -> unit
            val copy : 'a t -> 'a t
            val add : 'a t -> key:key -> data:'-> unit
            val remove : 'a t -> key -> unit
            val find : 'a t -> key -> 'a
            val find_all : 'a t -> key -> 'a list
            val replace : 'a t -> key:key -> data:'-> unit
            val mem : 'a t -> key -> bool
            val iter : f:(key:key -> data:'-> unit) -> 'a t -> unit
            val fold :
              f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
            val length : 'a t -> int
          end
      val hash : '-> int
      external hash_param : int -> int -> '-> int = "caml_hash_univ_param"
        "noalloc"
    end
  module Map :
    sig
      module type OrderedType = Map.OrderedType
      module type S =
        sig
          type key
          and +'a t
          val empty : 'MoreLabels.Map.S.t
          val is_empty : 'MoreLabels.Map.S.t -> bool
          val add :
            key:MoreLabels.Map.S.key ->
            data:'-> 'MoreLabels.Map.S.t -> 'MoreLabels.Map.S.t
          val find : MoreLabels.Map.S.key -> 'MoreLabels.Map.S.t -> 'a
          val remove :
            MoreLabels.Map.S.key ->
            'MoreLabels.Map.S.t -> 'MoreLabels.Map.S.t
          val mem : MoreLabels.Map.S.key -> 'MoreLabels.Map.S.t -> bool
          val iter :
            f:(key:MoreLabels.Map.S.key -> data:'-> unit) ->
            'MoreLabels.Map.S.t -> unit
          val map :
            f:('-> 'b) -> 'MoreLabels.Map.S.t -> 'MoreLabels.Map.S.t
          val mapi :
            f:(MoreLabels.Map.S.key -> '-> 'b) ->
            'MoreLabels.Map.S.t -> 'MoreLabels.Map.S.t
          val fold :
            f:(key:MoreLabels.Map.S.key -> data:'-> '-> 'b) ->
            'MoreLabels.Map.S.t -> init:'-> 'b
          val compare :
            cmp:('-> '-> int) ->
            'MoreLabels.Map.S.t -> 'MoreLabels.Map.S.t -> int
          val equal :
            cmp:('-> '-> bool) ->
            'MoreLabels.Map.S.t -> 'MoreLabels.Map.S.t -> bool
        end
      module Make :
        functor (Ord : OrderedType->
          sig
            type key = Ord.t
            and +'a t
            val empty : 'a t
            val is_empty : 'a t -> bool
            val add : key:key -> data:'-> 'a t -> 'a t
            val find : key -> 'a t -> 'a
            val remove : key -> 'a t -> 'a t
            val mem : key -> 'a t -> bool
            val iter : f:(key:key -> data:'-> unit) -> 'a t -> unit
            val map : f:('-> 'b) -> 'a t -> 'b t
            val mapi : f:(key -> '-> 'b) -> 'a t -> 'b t
            val fold :
              f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
            val compare : cmp:('-> '-> int) -> 'a t -> 'a t -> int
            val equal : cmp:('-> '-> bool) -> 'a t -> 'a t -> bool
          end
    end
  module Set :
    sig
      module type OrderedType = Set.OrderedType
      module type S =
        sig
          type elt
          and t
          val empty : MoreLabels.Set.S.t
          val is_empty : MoreLabels.Set.S.t -> bool
          val mem : MoreLabels.Set.S.elt -> MoreLabels.Set.S.t -> bool
          val add :
            MoreLabels.Set.S.elt -> MoreLabels.Set.S.t -> MoreLabels.Set.S.t
          val singleton : MoreLabels.Set.S.elt -> MoreLabels.Set.S.t
          val remove :
            MoreLabels.Set.S.elt -> MoreLabels.Set.S.t -> MoreLabels.Set.S.t
          val union :
            MoreLabels.Set.S.t -> MoreLabels.Set.S.t -> MoreLabels.Set.S.t
          val inter :
            MoreLabels.Set.S.t -> MoreLabels.Set.S.t -> MoreLabels.Set.S.t
          val diff :
            MoreLabels.Set.S.t -> MoreLabels.Set.S.t -> MoreLabels.Set.S.t
          val compare : MoreLabels.Set.S.t -> MoreLabels.Set.S.t -> int
          val equal : MoreLabels.Set.S.t -> MoreLabels.Set.S.t -> bool
          val subset : MoreLabels.Set.S.t -> MoreLabels.Set.S.t -> bool
          val iter :
            f:(MoreLabels.Set.S.elt -> unit) -> MoreLabels.Set.S.t -> unit
          val fold :
            f:(MoreLabels.Set.S.elt -> '-> 'a) ->
            MoreLabels.Set.S.t -> init:'-> 'a
          val for_all :
            f:(MoreLabels.Set.S.elt -> bool) -> MoreLabels.Set.S.t -> bool
          val exists :
            f:(MoreLabels.Set.S.elt -> bool) -> MoreLabels.Set.S.t -> bool
          val filter :
            f:(MoreLabels.Set.S.elt -> bool) ->
            MoreLabels.Set.S.t -> MoreLabels.Set.S.t
          val partition :
            f:(MoreLabels.Set.S.elt -> bool) ->
            MoreLabels.Set.S.t -> MoreLabels.Set.S.t * MoreLabels.Set.S.t
          val cardinal : MoreLabels.Set.S.t -> int
          val elements : MoreLabels.Set.S.t -> MoreLabels.Set.S.elt list
          val min_elt : MoreLabels.Set.S.t -> MoreLabels.Set.S.elt
          val max_elt : MoreLabels.Set.S.t -> MoreLabels.Set.S.elt
          val choose : MoreLabels.Set.S.t -> MoreLabels.Set.S.elt
          val split :
            MoreLabels.Set.S.elt ->
            MoreLabels.Set.S.t ->
            MoreLabels.Set.S.t * bool * MoreLabels.Set.S.t
        end
      module Make :
        functor (Ord : OrderedType->
          sig
            type elt = Ord.t
            and t
            val empty : t
            val is_empty : t -> bool
            val mem : elt -> t -> bool
            val add : elt -> t -> t
            val singleton : elt -> t
            val remove : elt -> t -> t
            val union : t -> t -> t
            val inter : t -> t -> t
            val diff : t -> t -> t
            val compare : t -> t -> int
            val equal : t -> t -> bool
            val subset : t -> t -> bool
            val iter : f:(elt -> unit) -> t -> unit
            val fold : f:(elt -> '-> 'a) -> t -> init:'-> 'a
            val for_all : f:(elt -> bool) -> t -> bool
            val exists : f:(elt -> bool) -> t -> bool
            val filter : f:(elt -> bool) -> t -> t
            val partition : f:(elt -> bool) -> t -> t * t
            val cardinal : t -> int
            val elements : t -> elt list
            val min_elt : t -> elt
            val max_elt : t -> elt
            val choose : t -> elt
            val split : elt -> t -> t * bool * t
          end
    end
end