module Set: Core_set
Polymorphic versions of standard Set operations
include S1
module type Elt = Core_set_intf.Elt
module type S = Core_set_intf.S
module type S_binable = sig
.. end
module Make: functor (
Elt
:
Elt
) ->
S
with type elt = Elt.t
module Make_binable: functor (
Elt
:
sig
include Core_set.Elt
include Binable.S
end
) ->
S_binable
with type elt = Elt.t