Module Impl.Decompress_heap

type t = {
mutable buffer : int array;
mutable length : int;
}
val make : int -> t
val get_parent : int -> int
val get_child : int -> int
exception Break
val push : int -> int -> t -> unit
val pop : t -> int * int
val length : t -> int