Uses of Interface
org.eclipse.collections.api.iterator.IntIterator
Packages that use IntIterator
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains primitive iterator API.
This package contains implementations of the lazy primitive iterator interfaces.
This package contains implementations of the primitive list interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of IntIterator in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return IntIteratorModifier and TypeMethodDescriptionIntIterable.intIterator()Returns a primitive iterator that can be used to iterate over the IntIterable in an imperative style. -
Uses of IntIterator in org.eclipse.collections.api.iterator
Subinterfaces of IntIterator in org.eclipse.collections.api.iteratorModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveIterator.stg. -
Uses of IntIterator in org.eclipse.collections.impl.iterator
Classes in org.eclipse.collections.impl.iterator that implement IntIteratorModifier and TypeClassDescriptionfinal classThis file was automatically generated from template file primitiveImmutableEmptyIterator.stg.final classThis file was automatically generated from template file singletonPrimitiveIterator.stg.classUnmodifiableIntIterator is a wrapper around IntIterator which is unmodifiable and doesn't support remove.Constructors in org.eclipse.collections.impl.iterator with parameters of type IntIterator -
Uses of IntIterator in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement IntIteratorMethods in org.eclipse.collections.impl.lazy.primitive that return IntIteratorModifier and TypeMethodDescriptionCollectBooleanToIntIterable.intIterator()CollectByteToIntIterable.intIterator()CollectCharToIntIterable.intIterator()CollectDoubleToIntIterable.intIterator()CollectFloatToIntIterable.intIterator()CollectIntIterable.intIterator()CollectIntToIntIterable.intIterator()CollectLongToIntIterable.intIterator()CollectShortToIntIterable.intIterator()LazyIntIterableAdapter.intIterator()ReverseIntIterable.intIterator()SelectIntIterable.intIterator()TapIntIterable.intIterator()Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntIterator -
Uses of IntIterator in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return IntIterator -
Uses of IntIterator in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return IntIteratorModifier and TypeMethodDescriptionSynchronizedIntIterable.intIterator()Must be called in a synchronized block. -
Uses of IntIterator in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return IntIteratorModifier and TypeMethodDescriptionSynchronizedIntStack.intIterator()Must be called in a synchronized block.UnmodifiableIntStack.intIterator() -
Uses of IntIterator in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return IntIterator -
Uses of IntIterator in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable that return IntIterator -
Uses of IntIterator in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type IntIteratorModifier and TypeMethodDescriptionstatic booleanIntIteratorIterate.allSatisfy(IntIterator iterator, IntPredicate predicate) static booleanIntIteratorIterate.anySatisfy(IntIterator iterator, IntPredicate predicate) static <V, R extends Collection<V>>
RIntIteratorIterate.collect(IntIterator iterator, IntToObjectFunction<? extends V> function, R targetCollection) static intIntIteratorIterate.count(IntIterator iterator, IntPredicate predicate) static intIntIteratorIterate.detectIfNone(IntIterator iterator, IntPredicate predicate, int ifNone) static voidIntIteratorIterate.forEach(IntIterator iterator, IntProcedure procedure) static <T> TIntIteratorIterate.injectInto(IntIterator iterator, T injectedValue, ObjectIntToObjectFunction<? super T, ? extends T> function) static intIntIteratorIterate.max(IntIterator iterator) static intIntIteratorIterate.min(IntIterator iterator) static booleanIntIteratorIterate.noneSatisfy(IntIterator iterator, IntPredicate predicate) static <R extends MutableIntCollection>
RIntIteratorIterate.reject(IntIterator iterator, IntPredicate predicate, R targetCollection) static <R extends MutableIntCollection>
RIntIteratorIterate.select(IntIterator iterator, IntPredicate predicate, R targetCollection) static longIntIteratorIterate.sum(IntIterator iterator)