Module Qcow_bitmap
type intervalAn interval: a range (x, y) of set values where all the elements from x to y inclusive are in the set
module Interval : sig ... endval make_empty : initial_size:int -> maximum_size:int -> tmake_empty ncreates a set ofinitial_sizewhich can be resized up tomaximum size, initially empty
val make_full : initial_size:int -> maximum_size:int -> tmake_full ncreates a set ofinitial_sizewhich can be resized up tomaximum size, initially full
val fold : (interval -> 'a -> 'a) -> t -> 'a -> 'afold f t accfoldsfacross all the intervals int
val fold_s : (interval -> 'a -> 'a Lwt.t) -> t -> 'a -> 'a Lwt.tfold_s f t accfoldsfacross all the intervals int
val min_elt : t -> eltmin_elt treturns the smallest element, or raisesNot_foundif the set is empty.
val to_string : t -> string
module Test : sig ... end