package dataStructures1112;


/**
 * @author Ricardo Gaspar nš 35277
 *         Ricardo Cruz   nš 34951  
 * Turno P8 
 * Docente Armanda Rodrigues
 */
public interface ConcatenableQueue<E> extends Queue<E> {
	
	// Removes all of the elements from the specied queue and
	// inserts them at the end of the queue (in proper order).
	void append( ConcatenableQueue<E> queue );
}
