Package it.unimi.dsi.fastutil.floats
Interface FloatIterator
-
- All Known Subinterfaces:
FloatBidirectionalIterator
,FloatBigListIterator
,FloatListIterator
- All Known Implementing Classes:
AbstractFloatBidirectionalIterator
,AbstractFloatBigListIterator
,AbstractFloatIterator
,AbstractFloatListIterator
,FloatBigListIterators.BigListIteratorListIterator
,FloatBigListIterators.EmptyBigListIterator
,FloatBigListIterators.UnmodifiableBigListIterator
,FloatIterators.EmptyIterator
,FloatIterators.UnmodifiableBidirectionalIterator
,FloatIterators.UnmodifiableIterator
,FloatIterators.UnmodifiableListIterator
public interface FloatIterator extends Iterator<Float>
A type-specificIterator
; provides an additional method to avoid (un)boxing, and the possibility to skip elements.- See Also:
Iterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default void
forEachRemaining(FloatConsumer action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.default void
forEachRemaining(Consumer<? super Float> action)
Deprecated.Please use the corresponding type-specific method instead.default Float
next()
Deprecated.Please use the corresponding type-specific method instead.float
nextFloat()
Returns the next element as a primitive type.default int
skip(int n)
Skips the given number of elements.
-
-
-
Method Detail
-
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 Float next()
Deprecated.Please use the corresponding type-specific method instead.
-
forEachRemaining
default void forEachRemaining(FloatConsumer action)
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.- Parameters:
action
- the action to be performed for each element.- Since:
- 8.0.0
- See Also:
Iterator.forEachRemaining(java.util.function.Consumer)
-
forEachRemaining
@Deprecated default void forEachRemaining(Consumer<? super Float> action)
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
forEachRemaining
in interfaceIterator<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()
forn
times (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()
-
-