This implementation delegates most methods to the provided {@link Iterator Iterator} implementation in the "obvious" way. @since Commons Primitives 1.0 @version $Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $ @author Rodney Waldhoff
101102103104105106107
static class FloatCollectionImpl extends AbstractFloatCollection { public FloatCollectionImpl() { } public FloatIterator iterator() { return new IteratorFloatIterator(Collections.EMPTY_LIST.iterator()); }