Packages

class BoundedPriorityQueue[A] extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BoundedPriorityQueue
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BoundedPriorityQueue(maxSize: Int)(implicit arg0: Ordering[A])

Value Members

  1. def ++=(xs: TraversableOnce[A]): BoundedPriorityQueue.this.type
  2. def +=(a: A): BoundedPriorityQueue.this.type
  3. def enqueue(elems: A*): BoundedPriorityQueue[A]
  4. def iterator(): Iterator[A]
  5. val maxSize: Int
  6. def peek(): A
  7. val pq: PriorityQueue[A]