module FCMap: sig .. end
sig
end
This signatures is a partial copy of the signature of Map.S of OCaml's standard library, which we extend with some new functions.
Map.S
module type S = sig .. end
module Make: functor (Ord : Map.OrderedType) -> S with type key = Ord.t
functor (
Ord
:
Map.OrderedType
) ->
S
with type key = Ord.t