module Core_set: sig
.. end
Polymorphic set module. Just like the standard Set module, but
with some extra Set operations. If you open Core.Std, this is your
Set module.
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