/**
 * 
 */
package dataStructures1112;

/**
 * @author rm.cruz
 *
 */
public interface InvertibleQueue<E> extends Queue<E>{
// Puts all elements in the queue in the opposite order.

	void invert( );
}
