Module type Lwt_pqueue.S


module type S = sig .. end

type elt 
type t 
val create : unit -> t
val add : elt -> t -> unit
val take : ?timeout:float -> t -> elt Lwt.t
val size : t -> int
val fold : ('a -> elt -> 'a) -> 'a -> t -> 'a