Package it.unimi.dsi.fastutil.doubles
Class DoubleIterators.UnmodifiableIterator
java.lang.Object
it.unimi.dsi.fastutil.doubles.DoubleIterators.UnmodifiableIterator
- All Implemented Interfaces:
DoubleIterator
,Iterator<Double>
,PrimitiveIterator<Double,
,DoubleConsumer> PrimitiveIterator.OfDouble
- Enclosing class:
DoubleIterators
An unmodifiable wrapper class for iterators.
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
forEachRemaining
(Consumer<? super Double> action) Deprecated.void
forEachRemaining
(DoubleConsumer action) boolean
hasNext()
double
Returns the next element as a primitive type.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterator
forEachRemaining, next, skip
-
Constructor Details
-
UnmodifiableIterator
-
-
Method Details
-
hasNext
public boolean hasNext() -
nextDouble
public double nextDouble()Description copied from interface:DoubleIterator
Returns the next element as a primitive type.- Specified by:
nextDouble
in interfaceDoubleIterator
- Specified by:
nextDouble
in interfacePrimitiveIterator.OfDouble
- Returns:
- the next element in the iteration.
- See Also:
-
forEachRemaining
- Specified by:
forEachRemaining
in interfacePrimitiveIterator<Double,
DoubleConsumer> - Specified by:
forEachRemaining
in interfacePrimitiveIterator.OfDouble
-
forEachRemaining
Deprecated.Description copied from interface:DoubleIterator
- Specified by:
forEachRemaining
in interfaceDoubleIterator
- Specified by:
forEachRemaining
in interfaceIterator<Double>
- Specified by:
forEachRemaining
in interfacePrimitiveIterator.OfDouble
-