Modul speiger.src.collections
Schnittstelle FloatSplititerator
- Alle Superschnittstellen:
FloatIterator,Iterator<Float>,Spliterator<Float>,Spliterator.OfPrimitive<Float,FloatConsumer, FloatSplititerator>
public interface FloatSplititerator
extends Spliterator.OfPrimitive<Float,FloatConsumer,FloatSplititerator>, FloatIterator
A Type Specific Split-Iterator that reduces boxing/unboxing
It fills the gaps of the java and uses this collection interfaces
-
Verschachtelte Klassen - Übersicht
Von Schnittstelle geerbte verschachtelte Klassen/Schnittstellen java.util.Spliterator
Spliterator.OfDouble, Spliterator.OfInt, Spliterator.OfLong, Spliterator.OfPrimitive<T,T_CONS, T_SPLITR extends Spliterator.OfPrimitive<T, T_CONS, T_SPLITR>> -
Feldübersicht
Von Schnittstelle geerbte Felder java.util.Spliterator
CONCURRENT, DISTINCT, IMMUTABLE, NONNULL, ORDERED, SIZED, SORTED, SUBSIZED -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungdefault voidforEachRemaining(Consumer<? super Float> action) Veraltet.default voidforEachRemaining(FloatConsumer action) Performs the given action for each remaining element until all elements have been processed or the action throws an exception.Von Schnittstelle geerbte Methoden speiger.src.collections.floats.collections.FloatIterator
forEachRemaining, next, nextFloat, skipVon Schnittstelle geerbte Methoden java.util.Spliterator
characteristics, estimateSize, getComparator, getExactSizeIfKnown, hasCharacteristics, tryAdvanceVon Schnittstelle geerbte Methoden java.util.Spliterator.OfPrimitive
tryAdvance, trySplit
-
Methodendetails
-
forEachRemaining
Beschreibung aus Schnittstelle kopiert:FloatIteratorPerforms the given action for each remaining element until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is specified. Exceptions thrown by the action are relayed to the caller.- Angegeben von:
forEachRemainingin SchnittstelleFloatIterator- Angegeben von:
forEachRemainingin SchnittstelleSpliterator.OfPrimitive<Float,FloatConsumer, FloatSplititerator> - Parameter:
action- The action to be performed for each element- Siehe auch:
-
forEachRemaining
Veraltet.Beschreibung aus Schnittstelle kopiert:FloatIteratorThis default implementation delegates to the corresponding type-specific function.
- Angegeben von:
forEachRemainingin SchnittstelleFloatIterator- Angegeben von:
forEachRemainingin SchnittstelleIterator<Float>- Angegeben von:
forEachRemainingin SchnittstelleSpliterator<Float>
-