/**
 * Queues.  Queues are linear structures that implement the "First In,
 * First Out" policy.
 */
public interface Queue
  extends Linear
{
} // interface Queue
