Module Qed.Intset
Set of integers using Patricia Trees.
From the paper of Chris Okasaki and Andrew Gill: 'Fast Mergeable Integer Maps'.
val compare : t -> t -> intval equal : t -> t -> boolval elements : t -> int listval mem : int -> t -> boolval remove : int -> t -> tval subset : t -> t -> boolval iter : (int -> unit) -> t -> unitval fold : (int -> 'a -> 'a) -> t -> 'a -> 'aval for_all : (int -> bool) -> t -> boolval exists : (int -> bool) -> t -> boolval filter : (int -> bool) -> t -> tval partition : (int -> bool) -> t -> t * tval intersect : t -> t -> bool