Package it.unimi.dsi.fastutil.floats
Interface FloatIterator
- All Superinterfaces:
java.util.Iterator<java.lang.Float>,java.util.PrimitiveIterator<java.lang.Float,FloatConsumer>
- All Known Subinterfaces:
FloatBidirectionalIterator,FloatBigListIterator,FloatListIterator
- All Known Implementing Classes:
AbstractFloatBidirectionalIterator,AbstractFloatBigListIterator,AbstractFloatIterator,AbstractFloatListIterator,FloatBigListIterators.AbstractIndexBasedBigIterator,FloatBigListIterators.AbstractIndexBasedBigListIterator,FloatBigListIterators.BigListIteratorListIterator,FloatBigListIterators.EmptyBigListIterator,FloatBigListIterators.UnmodifiableBigListIterator,FloatIterators.AbstractIndexBasedIterator,FloatIterators.AbstractIndexBasedListIterator,FloatIterators.EmptyIterator,FloatIterators.UnmodifiableBidirectionalIterator,FloatIterators.UnmodifiableIterator,FloatIterators.UnmodifiableListIterator
public interface FloatIterator extends java.util.PrimitiveIterator<java.lang.Float,FloatConsumer>
A type-specific
Iterator; provides an additional method to avoid
(un)boxing, and the possibility to skip elements.- See Also:
Iterator
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
java.util.PrimitiveIterator.OfDouble, java.util.PrimitiveIterator.OfInt, java.util.PrimitiveIterator.OfLong -
Method Summary
Modifier and Type Method Description default voidforEachRemaining(FloatConsumer action)Performs the given action for each remaining element until all elements have been processed or the action throws an exception.default voidforEachRemaining(java.util.function.Consumer<? super java.lang.Float> action)Deprecated.Please use the corresponding type-specific method instead.default voidforEachRemaining(java.util.function.DoubleConsumer action)Performs the given action for each remaining element, performing widening primitive casts, until all elements have been processed or the action throws an exception.default java.lang.Floatnext()Deprecated.Please use the corresponding type-specific method instead.floatnextFloat()Returns the next element as a primitive type.default intskip(int n)Skips the given number of elements.Methods inherited from interface java.util.Iterator
hasNext, remove
-
Method Details
-
nextFloat
float nextFloat()Returns the next element as a primitive type.- Returns:
- the next element in the iteration.
- See Also:
Iterator.next()
-
next
@Deprecated default java.lang.Float next()Deprecated.Please use the corresponding type-specific method instead.- Specified by:
nextin interfacejava.util.Iterator<java.lang.Float>
-
forEachRemaining
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.- Specified by:
forEachRemainingin interfacejava.util.PrimitiveIterator<java.lang.Float,FloatConsumer>- Parameters:
action- the action to be performed for each element.- Since:
- 8.0.0
- See Also:
Iterator.forEachRemaining(java.util.function.Consumer)- API Notes:
- Implementing classes should generally override this method, and take the default implementation of the other overloads which will delegate to this method (after proper conversions).
-
forEachRemaining
default void forEachRemaining(java.util.function.DoubleConsumer action)Performs the given action for each remaining element, performing widening primitive casts, until all elements have been processed or the action throws an exception.- Parameters:
action- the action to be performed for each element.- Since:
- 8.5.0
- See Also:
Iterator.forEachRemaining(java.util.function.Consumer)- Implementation Notes:
- Unless the argument is type-specific, this method will introduce an intermediary lambda to perform widening casts. Please use the type-specific overload to avoid this overhead.
-
forEachRemaining
@Deprecated default void forEachRemaining(java.util.function.Consumer<? super java.lang.Float> action)Deprecated.Please use the corresponding type-specific method instead.- Specified by:
forEachRemainingin interfacejava.util.Iterator<java.lang.Float>
-
skip
default int skip(int n)Skips the given number of elements.The effect of this call is exactly the same as that of calling
next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-