Uses of Interface
org.eclipse.collections.api.iterator.DoubleIterator
Packages that use DoubleIterator
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 mutable primitive stack interfaces.
-
Uses of DoubleIterator in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return DoubleIteratorModifier and TypeMethodDescriptionDoubleIterable.doubleIterator()Returns a primitive iterator that can be used to iterate over the DoubleIterable in an imperative style. -
Uses of DoubleIterator in org.eclipse.collections.api.iterator
Subinterfaces of DoubleIterator in org.eclipse.collections.api.iteratorModifier and TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveIterator.stg. -
Uses of DoubleIterator in org.eclipse.collections.impl.iterator
Classes in org.eclipse.collections.impl.iterator that implement DoubleIteratorModifier and TypeClassDescriptionfinal classThis file was automatically generated from template file primitiveImmutableEmptyIterator.stg.final classThis file was automatically generated from template file singletonPrimitiveIterator.stg.classUnmodifiableDoubleIterator is a wrapper around DoubleIterator which is unmodifiable and doesn't support remove.Constructors in org.eclipse.collections.impl.iterator with parameters of type DoubleIterator -
Uses of DoubleIterator in org.eclipse.collections.impl.lazy.primitive
Classes in org.eclipse.collections.impl.lazy.primitive that implement DoubleIteratorMethods in org.eclipse.collections.impl.lazy.primitive that return DoubleIteratorModifier and TypeMethodDescriptionCollectBooleanToDoubleIterable.doubleIterator()CollectByteToDoubleIterable.doubleIterator()CollectCharToDoubleIterable.doubleIterator()CollectDoubleIterable.doubleIterator()CollectDoubleToDoubleIterable.doubleIterator()CollectFloatToDoubleIterable.doubleIterator()CollectIntToDoubleIterable.doubleIterator()CollectLongToDoubleIterable.doubleIterator()CollectShortToDoubleIterable.doubleIterator()LazyDoubleIterableAdapter.doubleIterator()ReverseDoubleIterable.doubleIterator()SelectDoubleIterable.doubleIterator()TapDoubleIterable.doubleIterator()Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type DoubleIteratorModifierConstructorDescriptionTapDoubleIterator(DoubleIterator iterator, DoubleProcedure procedure) -
Uses of DoubleIterator in org.eclipse.collections.impl.primitive
Methods in org.eclipse.collections.impl.primitive that return DoubleIteratorModifier and TypeMethodDescriptionSynchronizedDoubleIterable.doubleIterator()Must be called in a synchronized block. -
Uses of DoubleIterator in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return DoubleIteratorModifier and TypeMethodDescriptionSynchronizedDoubleStack.doubleIterator()Must be called in a synchronized block.UnmodifiableDoubleStack.doubleIterator() -
Uses of DoubleIterator in org.eclipse.collections.impl.stack.primitive
Methods in org.eclipse.collections.impl.stack.primitive that return DoubleIterator -
Uses of DoubleIterator in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with parameters of type DoubleIteratorModifier and TypeMethodDescriptionstatic booleanDoubleIteratorIterate.allSatisfy(DoubleIterator iterator, DoublePredicate predicate) static booleanDoubleIteratorIterate.anySatisfy(DoubleIterator iterator, DoublePredicate predicate) static <V,R extends Collection<V>>
RDoubleIteratorIterate.collect(DoubleIterator iterator, DoubleToObjectFunction<? extends V> function, R targetCollection) static intDoubleIteratorIterate.count(DoubleIterator iterator, DoublePredicate predicate) static doubleDoubleIteratorIterate.detectIfNone(DoubleIterator iterator, DoublePredicate predicate, double ifNone) static voidDoubleIteratorIterate.forEach(DoubleIterator iterator, DoubleProcedure procedure) static <T> TDoubleIteratorIterate.injectInto(DoubleIterator iterator, T injectedValue, ObjectDoubleToObjectFunction<? super T, ? extends T> function) static doubleDoubleIteratorIterate.max(DoubleIterator iterator) static doubleDoubleIteratorIterate.min(DoubleIterator iterator) static booleanDoubleIteratorIterate.noneSatisfy(DoubleIterator iterator, DoublePredicate predicate) static <R extends MutableDoubleCollection>
RDoubleIteratorIterate.reject(DoubleIterator iterator, DoublePredicate predicate, R targetCollection) static <R extends MutableDoubleCollection>
RDoubleIteratorIterate.select(DoubleIterator iterator, DoublePredicate predicate, R targetCollection) static doubleDoubleIteratorIterate.sum(DoubleIterator iterator)