Remove trailing white spaces
[SXSI/xpathcomp.git] / hlist.mli
index 7210250..9f8dfc3 100644 (file)
--- a/hlist.mli
+++ b/hlist.mli
@@ -12,7 +12,7 @@ module type S = sig
   type data = Data.t
   type t = Node.t
   val hash : t -> int
-  val uid : t -> int
+  val uid : t -> Uid.t
   val make : data -> t
   val equal : t -> t -> bool
   val nil : t
@@ -26,6 +26,8 @@ module type S = sig
   val rev : t -> t
   val rev_map : (elt -> elt) -> t -> t
   val length : t -> int
+
+  val with_id : Uid.t -> t
 end
 
 module Make (H : Hcons.SA) : S with type elt = H.t