Add a bullet symbol.
[tatoo.git] / src / ptset.mli
index df38255..632832c 100644 (file)
 (*                                                                     *)
 (***********************************************************************)
 
-module type S =
-  sig
-    include Sigs.Set
-    include Hcons.S with type t := t
-  end
-(** Output signature of the {!Ptset.Make} and {!Ptset.Weak} functors. *)
+include module type of Ptset_sig
 
 module Make (H : Hcons.Abstract) : S with type elt = H.t
 (** Builds an implementation of hashconsed sets of hashconsed elements.
@@ -30,5 +25,5 @@ module Weak (H : Hcons.Abstract) : S with type elt = H.t
     with weak internal storage. See {!Hcons.Weak}.
 *)
 
-module PosInt : Sigs.Set with type elt = int
+module PosInt : S with type elt = int
 (** Implementation of hashconsed sets of positive integers *)