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

