sig
type 'a t
type 'a elt
val create : unit -> 'a Pqueue.MaxPoly.t
val length : 'a Pqueue.MaxPoly.t -> int
val is_empty : 'a Pqueue.MaxPoly.t -> bool
val add : 'a Pqueue.MaxPoly.t -> 'a Pqueue.MaxPoly.elt -> unit
val add_iter :
'a Pqueue.MaxPoly.t ->
(('a Pqueue.MaxPoly.elt -> unit) -> 'x -> unit) -> 'x -> unit
val max_elt : 'a Pqueue.MaxPoly.t -> 'a Pqueue.MaxPoly.elt option
val get_max_elt : 'a Pqueue.MaxPoly.t -> 'a Pqueue.MaxPoly.elt
val pop_max : 'a Pqueue.MaxPoly.t -> 'a Pqueue.MaxPoly.elt option
val remove_max : 'a Pqueue.MaxPoly.t -> unit
val clear : 'a Pqueue.MaxPoly.t -> unit
val copy : 'a Pqueue.MaxPoly.t -> 'a Pqueue.MaxPoly.t
val of_array : 'a Pqueue.MaxPoly.elt array -> 'a Pqueue.MaxPoly.t
val of_list : 'a Pqueue.MaxPoly.elt list -> 'a Pqueue.MaxPoly.t
val of_iter :
(('a Pqueue.MaxPoly.elt -> unit) -> 'x -> unit) ->
'x -> 'a Pqueue.MaxPoly.t
val iter_unordered :
('a Pqueue.MaxPoly.elt -> unit) -> 'a Pqueue.MaxPoly.t -> unit
val fold_unordered :
('acc -> 'a Pqueue.MaxPoly.elt -> 'acc) ->
'acc -> 'a Pqueue.MaxPoly.t -> 'acc
end