= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package containers
-
containers
-
containers.data
-
containers.monomorphic
-
containers.sexp
-
containers.top
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Multimap
module type S = sig ... end
module type OrderedType = sig ... end
module Make
(K : OrderedType)
(V : OrderedType) :
S with type key = K.t and type value = V.t
Two-Way Multimap
Represents n-to-n mappings between two types. Each element from the "left" is mapped to several right values, and conversely.
- since 0.3.3
module type BIDIR = sig ... end
module MakeBidir
(L : OrderedType)
(R : OrderedType) :
BIDIR with type left = L.t and type right = R.t
ON THIS PAGE