// A FIFO collection of elements public interface IntQueue extends IntCollection { public int peek(); public int remove(); }