Module Qed.IntsetSource
Set of integers using Patricia Trees.
From the paper of Chris Okasaki and Andrew Gill: 'Fast Mergeable Integer Maps'.
Sourceval iter : (int -> unit) -> t -> unit Sourceval fold : (int -> 'a -> 'a) -> t -> 'a -> 'a Sourceval for_all : (int -> bool) -> t -> bool Sourceval exists : (int -> bool) -> t -> bool Sourceval filter : (int -> bool) -> t -> t Sourceval partition : (int -> bool) -> t -> t * t