= 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
Bijection
Represents 1-to-1 mappings between two types. Each element from the "left" is mapped to one "right" value, and conversely.
- since 2.1
module type OrderedType = sig ... end
module type S = sig ... end
module Make
(L : OrderedType)
(R : OrderedType) :
S with type left = L.t and type right = R.t
ON THIS PAGE