Uses of Interface
org.eclipse.collections.api.iterator.LongIterator
Packages that use LongIterator
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 LongIterator in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return LongIteratorModifier and TypeMethodDescriptionLongIterable.longIterator()Returns a primitive iterator that can be used to iterate over the LongIterable in an imperative style. -
Uses of LongIterator in org.eclipse.collections.api.iterator
Subinterfaces of LongIterator in org.eclipse.collections.api.iteratorModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveIterator.stg. -
Uses of LongIterator in org.eclipse.collections.impl.iterator
Classes in org.eclipse.collections.impl.iterator that implement LongIteratorModifier and TypeClassDescriptionfinal classThis file was automatically generated from template file primitiveImmutableEmptyIterator.stg.final classThis file was automatically generated from template file singletonPrimitiveIterator.stg.classUnmodifiableLongIterator is a wrapper around LongIterator which is unmodifiable and doesn't support remove.Constructors in org.eclipse.collections.impl.iterator with parameters of type LongIterator -
Uses of LongIterator in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement LongIteratorMethods in org.eclipse.collections.impl.lazy.primitive that return LongIteratorModifier and TypeMethodDescriptionCollectBooleanToLongIterable.longIterator()CollectByteToLongIterable.longIterator()CollectCharToLongIterable.longIterator()CollectDoubleToLongIterable.longIterator()CollectFloatToLongIterable.longIterator()CollectIntToLongIterable.longIterator()CollectLongIterable.longIterator()CollectLongToLongIterable.longIterator()CollectShortToLongIterable.longIterator()LazyLongIterableAdapter.longIterator()ReverseLongIterable.longIterator()SelectLongIterable.longIterator()TapLongIterable.longIterator()Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type LongIterator -
Uses of LongIterator in org.eclipse.collections.impl.list.primitive
Methods in org.eclipse.collections.impl.list.primitive that return LongIterator -
Uses of LongIterator in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return LongIteratorModifier and TypeMethodDescriptionSynchronizedLongIterable.longIterator()Must be called in a synchronized block. -
Uses of LongIterator in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return LongIteratorModifier and TypeMethodDescriptionSynchronizedLongStack.longIterator()Must be called in a synchronized block.UnmodifiableLongStack.longIterator() -
Uses of LongIterator in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return LongIterator -
Uses of LongIterator in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type LongIteratorModifier and TypeMethodDescriptionstatic booleanLongIteratorIterate.allSatisfy(LongIterator iterator, LongPredicate predicate) static booleanLongIteratorIterate.anySatisfy(LongIterator iterator, LongPredicate predicate) static <V, R extends Collection<V>>
RLongIteratorIterate.collect(LongIterator iterator, LongToObjectFunction<? extends V> function, R targetCollection) static intLongIteratorIterate.count(LongIterator iterator, LongPredicate predicate) static longLongIteratorIterate.detectIfNone(LongIterator iterator, LongPredicate predicate, long ifNone) static voidLongIteratorIterate.forEach(LongIterator iterator, LongProcedure procedure) static <T> TLongIteratorIterate.injectInto(LongIterator iterator, T injectedValue, ObjectLongToObjectFunction<? super T, ? extends T> function) static longLongIteratorIterate.max(LongIterator iterator) static longLongIteratorIterate.min(LongIterator iterator) static booleanLongIteratorIterate.noneSatisfy(LongIterator iterator, LongPredicate predicate) static <R extends MutableLongCollection>
RLongIteratorIterate.reject(LongIterator iterator, LongPredicate predicate, R targetCollection) static <R extends MutableLongCollection>
RLongIteratorIterate.select(LongIterator iterator, LongPredicate predicate, R targetCollection) static longLongIteratorIterate.sum(LongIterator iterator)