Gist.Maplike
Operations on maplikes.
type 'a gist := 'a t
type ('k, 'v, 'm) t = ('k, 'v, 'm) maplike
The type for representing maplike types of type 'm
with keys of type 'k
and values of type 'v
.
val name : ('k, 'v, 'm) maplike -> string
name m
is the name of m
.
Map.S
modulesmodule type VALUE = sig ... end
The type for map values.