blob: 403c397f358b3336e8935c16fb7b217dfc811194 [file] [log] [blame]
package org.apache.yoko.util;
/** A first-in, first-accessed holder of stuff */
public interface Fifa<T> extends Sequential<T> {
T peek();
}