/**
 * Proirity Queues.  Priority queues are linear structures that implement 
 * the "most important first" policy.
 */
public interface PriorityQueue
  extends Linear
{
} // interface PriorityQueue
