Uses of Interface
org.eclipse.collections.api.collection.primitive.MutableIntCollection
Packages that use MutableIntCollection
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains mutable and immutable primitive collection API.
This package contains mutable and immutable primitive list API.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains API for mutable and immutable primitive sets.
This package contains implementations for Eclipse Collections API.
This package contains implementations of the mutable primitive bag interfaces.
This package contains implementations of the
MutableBiMap
interface.This package contains implementations of primitive procedures.
This package contains implementations of the
MutableCollection
interface.This package contains implementations of the mutable primitive collection interfaces.
This package contains implementations of the
MutableList
interface.This package contains implementations of the mutable primitive list interfaces.
This package contains implementations of the
MutableMap
interface.This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
This package contains implementations of the
MutableSortedMap
interface.This package contains implementations of the mutable primitive set interfaces.
This package contains implementations of the
MutableStack
interface.This package contains implementations of the mutable primitive stack interfaces.
This package contains static utilities that provide iteration pattern implementations which work with JCF collections.
This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections.
-
Uses of MutableIntCollection in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableIntCollectionModifier and TypeMethodDescriptiondefault <R extends MutableIntCollection>
RBooleanIterable.collectInt
(BooleanToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RByteIterable.collectInt
(ByteToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RCharIterable.collectInt
(CharToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RDoubleIterable.collectInt
(DoubleToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RFloatIterable.collectInt
(FloatToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RIntIterable.collectInt
(IntToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RLongIterable.collectInt
(LongToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RRichIterable.collectInt
(IntFunction<? super T> intFunction, R target) Same asRichIterable.collectInt(IntFunction)
, except that the results are gathered into the specifiedtarget
collection.default <R extends MutableIntCollection>
RShortIterable.collectInt
(ShortToIntFunction function, R target) Returns the targetMutableIntCollection
with the results of applying the specified function on each element of the source collection.default <R extends MutableIntCollection>
RRichIterable.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) Same as flatCollect, only the results are collected into the target collection.default <R extends MutableIntCollection>
RIntIterable.reject
(IntPredicate predicate, R target) Same asIntIterable.reject(IntPredicate)
, only the results are added to the target MutableIntCollection.default <R extends MutableIntCollection>
RIntIterable.select
(IntPredicate predicate, R target) Same asIntIterable.select(IntPredicate)
, only the results are added to the target MutableIntCollection. -
Uses of MutableIntCollection in org.eclipse.collections.api.bag.primitive
Subinterfaces of MutableIntCollection in org.eclipse.collections.api.bag.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveBag.stg. -
Uses of MutableIntCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return MutableIntCollectionModifier and TypeMethodDescriptiondefault MutableIntCollection
MutableCollection.collectInt
(IntFunction<? super T> intFunction) Returns a new primitiveint
iterable with the results of applying the specified function on each element of the source collection. -
Uses of MutableIntCollection in org.eclipse.collections.api.collection.primitive
Methods in org.eclipse.collections.api.collection.primitive that return MutableIntCollectionModifier and TypeMethodDescriptionMutableIntCollection.asSynchronized()
MutableIntCollection.asUnmodifiable()
default MutableIntCollection
MutableIntCollection.newEmpty()
Creates a new empty mutable version of the same collection type.MutableIntCollection.reject
(IntPredicate predicate) MutableIntCollection.select
(IntPredicate predicate) default MutableIntCollection
MutableIntCollection.tap
(IntProcedure procedure) MutableIntCollection.with
(int element) MutableIntCollection.withAll
(IntIterable elements) MutableIntCollection.without
(int element) MutableIntCollection.withoutAll
(IntIterable elements) -
Uses of MutableIntCollection in org.eclipse.collections.api.list.primitive
Subinterfaces of MutableIntCollection in org.eclipse.collections.api.list.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveList.stg. -
Uses of MutableIntCollection in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntCollectionModifier and TypeMethodDescriptionMutableObjectIntMap.reject
(IntPredicate predicate) MutableObjectIntMap.select
(IntPredicate predicate) IntValuesMap.values()
Returns the values in this map as a separate collection.ObjectIntMap.values()
Returns the values in this map as a separate collection. -
Uses of MutableIntCollection in org.eclipse.collections.api.ordered.primitive
Methods in org.eclipse.collections.api.ordered.primitive with type parameters of type MutableIntCollectionModifier and TypeMethodDescriptiondefault <R extends MutableIntCollection>
ROrderedIntIterable.rejectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.default <R extends MutableIntCollection>
ROrderedIntIterable.selectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableIntCollection in org.eclipse.collections.api.set.primitive
Subinterfaces of MutableIntCollection in org.eclipse.collections.api.set.primitiveModifier and TypeInterfaceDescriptioninterface
This file was automatically generated from template file mutablePrimitiveSet.stg. -
Uses of MutableIntCollection in org.eclipse.collections.impl
Methods in org.eclipse.collections.impl with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RUnmodifiableRichIterable.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableRichIterable.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RAbstractBag.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RAbstractBag.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.bag.mutable.primitive
Classes in org.eclipse.collections.impl.bag.mutable.primitive that implement MutableIntCollectionModifier and TypeClassDescriptionclass
IntHashBag is similar toHashBag
, and is memory-optimized for int primitives.class
A synchronized view of aMutableIntBag
.class
This file was automatically generated from template file unmodifiablePrimitiveBag.stg. -
Uses of MutableIntCollection in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RAbstractBiMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RAbstractBiMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RUnmodifiableBiMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableBiMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.block.procedure.primitive
Methods in org.eclipse.collections.impl.block.procedure.primitive that return MutableIntCollectionConstructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type MutableIntCollectionModifierConstructorDescriptionCollectIntProcedure
(IntFunction<? super T> intFunction, MutableIntCollection targetCollection) -
Uses of MutableIntCollection in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RAbstractSynchronizedRichIterable.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RAbstractSynchronizedRichIterable.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RAbstractCollectionAdapter.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RAbstractMultiReaderMutableCollection.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RAbstractUnmodifiableMutableCollection.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RAbstractMultiReaderMutableCollection.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RAbstractUnmodifiableMutableCollection.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) Methods in org.eclipse.collections.impl.collection.mutable that return MutableIntCollectionModifier and TypeMethodDescriptionAbstractSynchronizedMutableCollection.collectInt
(IntFunction<? super T> intFunction) AbstractUnmodifiableMutableCollection.collectInt
(IntFunction<? super T> intFunction) -
Uses of MutableIntCollection in org.eclipse.collections.impl.collection.mutable.primitive
Classes in org.eclipse.collections.impl.collection.mutable.primitive that implement MutableIntCollectionModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractSynchronizedPrimitiveCollection.stg.class
This file was automatically generated from template file abstractUnmodifiablePrimitiveCollection.stg.class
This file was automatically generated from template file synchronizedPrimitiveCollection.stg.class
This file was automatically generated from template file unmodifiablePrimitiveCollection.stg.Methods in org.eclipse.collections.impl.collection.mutable.primitive that return MutableIntCollectionModifier and TypeMethodDescriptionAbstractSynchronizedIntCollection.asSynchronized()
AbstractUnmodifiableIntCollection.asSynchronized()
AbstractSynchronizedIntCollection.asUnmodifiable()
AbstractUnmodifiableIntCollection.asUnmodifiable()
SynchronizedIntCollection.newEmpty()
UnmodifiableIntCollection.newEmpty()
AbstractSynchronizedIntCollection.reject
(IntPredicate predicate) AbstractUnmodifiableIntCollection.reject
(IntPredicate predicate) AbstractSynchronizedIntCollection.select
(IntPredicate predicate) AbstractUnmodifiableIntCollection.select
(IntPredicate predicate) AbstractSynchronizedIntCollection.with
(int element) AbstractUnmodifiableIntCollection.with
(int element) AbstractSynchronizedIntCollection.withAll
(IntIterable elements) AbstractUnmodifiableIntCollection.withAll
(IntIterable elements) AbstractSynchronizedIntCollection.without
(int element) AbstractUnmodifiableIntCollection.without
(int element) AbstractSynchronizedIntCollection.withoutAll
(IntIterable elements) AbstractUnmodifiableIntCollection.withoutAll
(IntIterable elements) Methods in org.eclipse.collections.impl.collection.mutable.primitive with parameters of type MutableIntCollectionModifier and TypeMethodDescriptionstatic SynchronizedIntCollection
SynchronizedIntCollection.of
(MutableIntCollection collection) This method will take a MutableIntCollection and wrap it directly in a SynchronizedIntCollection.static SynchronizedIntCollection
SynchronizedIntCollection.of
(MutableIntCollection collection, Object lock) This method will take a MutableIntCollection and wrap it directly in a SynchronizedIntCollection.static UnmodifiableIntCollection
UnmodifiableIntCollection.of
(MutableIntCollection collection) This method will take a MutableIntCollection and wrap it directly in a UnmodifiableIntCollection. -
Uses of MutableIntCollection in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with type parameters of type MutableIntCollectionModifier and TypeMethodDescriptionstatic <T,
R extends MutableIntCollection>
Collector<T,?, R> Collectors2.collectInt
(IntFunction<? super T> function, Supplier<R> supplier) Returns a new MutableIntCollection with the results of applying the specified IntFunction on each element of the source. -
Uses of MutableIntCollection in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RFastList.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RFastList.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.list.mutable.primitive
Classes in org.eclipse.collections.impl.list.mutable.primitive that implement MutableIntCollectionModifier and TypeClassDescriptionclass
IntArrayList is similar to FastList, and is memory-optimized for int primitives.class
A synchronized view of aMutableIntList
.class
This file was automatically generated from template file unmodifiablePrimitiveList.stg.Methods in org.eclipse.collections.impl.list.mutable.primitive with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RIntArrayList.reject
(IntPredicate predicate, R target) <R extends MutableIntCollection>
RSynchronizedIntList.rejectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableIntCollection>
RUnmodifiableIntList.rejectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableIntCollection>
RIntArrayList.select
(IntPredicate predicate, R target) <R extends MutableIntCollection>
RSynchronizedIntList.selectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate.<R extends MutableIntCollection>
RUnmodifiableIntList.selectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableIntCollection in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RUnmodifiableMutableMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableMutableMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.map.mutable.primitive
Classes in org.eclipse.collections.impl.map.mutable.primitive that implement MutableIntCollectionModifier and TypeClassDescriptionclass
This file was automatically generated from template file abstractMutablePrimitiveKeySet.stg.Methods in org.eclipse.collections.impl.map.mutable.primitive with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RSynchronizedByteObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedCharObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedDoubleObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedFloatObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedIntObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedLongObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedShortObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableByteObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableCharObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableDoubleObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableFloatObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableIntObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableLongObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableShortObjectMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedByteObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedCharObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedDoubleObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedFloatObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedIntObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedLongObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedShortObjectMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) Methods in org.eclipse.collections.impl.map.mutable.primitive that return MutableIntCollectionModifier and TypeMethodDescriptionObjectIntHashMap.reject
(IntPredicate predicate) ObjectIntHashMapWithHashingStrategy.reject
(IntPredicate predicate) SynchronizedObjectIntMap.reject
(IntPredicate predicate) UnmodifiableObjectIntMap.reject
(IntPredicate predicate) ObjectIntHashMap.select
(IntPredicate predicate) ObjectIntHashMapWithHashingStrategy.select
(IntPredicate predicate) SynchronizedObjectIntMap.select
(IntPredicate predicate) UnmodifiableObjectIntMap.select
(IntPredicate predicate) ByteIntHashMap.values()
CharIntHashMap.values()
DoubleIntHashMap.values()
FloatIntHashMap.values()
IntIntHashMap.values()
LongIntHashMap.values()
ObjectIntHashMap.values()
ObjectIntHashMapWithHashingStrategy.values()
ShortIntHashMap.values()
SynchronizedByteIntMap.values()
SynchronizedCharIntMap.values()
SynchronizedDoubleIntMap.values()
SynchronizedFloatIntMap.values()
SynchronizedIntIntMap.values()
SynchronizedLongIntMap.values()
SynchronizedObjectIntMap.values()
SynchronizedShortIntMap.values()
UnmodifiableByteIntMap.values()
UnmodifiableCharIntMap.values()
UnmodifiableDoubleIntMap.values()
UnmodifiableFloatIntMap.values()
UnmodifiableIntIntMap.values()
UnmodifiableLongIntMap.values()
UnmodifiableObjectIntMap.values()
UnmodifiableShortIntMap.values()
-
Uses of MutableIntCollection in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RUnmodifiableMutableOrderedMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableMutableOrderedMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RUnmodifiableTreeMap.collectInt
(IntFunction<? super V> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableTreeMap.flatCollectInt
(Function<? super V, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.set.mutable.primitive
Classes in org.eclipse.collections.impl.set.mutable.primitive that implement MutableIntCollectionModifier and TypeClassDescriptionclass
This file was automatically generated from template file primitiveHashSet.stg.class
A synchronized view of aMutableIntSet
.class
This file was automatically generated from template file unmodifiablePrimitiveSet.stg.Methods in org.eclipse.collections.impl.set.mutable.primitive with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RIntHashSet.reject
(IntPredicate predicate, R target) <R extends MutableIntCollection>
RIntHashSet.select
(IntPredicate predicate, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RArrayStack.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RSynchronizedStack.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RUnmodifiableStack.collectInt
(IntFunction<? super T> intFunction, R target) <R extends MutableIntCollection>
RArrayStack.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RSynchronizedStack.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) <R extends MutableIntCollection>
RUnmodifiableStack.flatCollectInt
(Function<? super T, ? extends IntIterable> function, R target) -
Uses of MutableIntCollection in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive with type parameters of type MutableIntCollectionModifier and TypeMethodDescription<R extends MutableIntCollection>
RSynchronizedIntStack.rejectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection excluding all elements with corresponding indexes matching the specified predicate.<R extends MutableIntCollection>
RSynchronizedIntStack.selectWithIndex
(IntIntPredicate predicate, R target) Returns a new MutableIntCollection including all elements with corresponding indexes matching the specified predicate. -
Uses of MutableIntCollection in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with type parameters of type MutableIntCollectionModifier and TypeMethodDescriptionstatic <T,
R extends MutableIntCollection>
RArrayIterate.collectInt
(T[] objectArray, IntFunction<? super T> intFunction, R target) static <T,
R extends MutableIntCollection>
RArrayListIterate.collectInt
(ArrayList<T> list, IntFunction<? super T> intFunction, R target) static <T,
R extends MutableIntCollection>
RIterate.collectInt
(Iterable<T> iterable, IntFunction<? super T> intFunction, R target) Same asIterate.collectInt(Iterable, IntFunction)
, except that the results are gathered into the specifiedtarget
collection.static <T,
R extends MutableIntCollection>
RListIterate.collectInt
(List<T> list, IntFunction<? super T> intFunction, R target) static <K,
V, R extends MutableIntCollection>
RMapIterate.collectInt
(Map<K, V> map, IntFunction<? super V> intFunction, R target) Methods in org.eclipse.collections.impl.utility that return MutableIntCollectionModifier and TypeMethodDescriptionstatic <T> MutableIntCollection
Iterate.collectInt
(Iterable<T> iterable, IntFunction<? super T> intFunction) Returns a newint
collection with the results of applying the specified intFunction for each element of the iterable.static <K,
V> MutableIntCollection MapIterate.collectInt
(Map<K, V> map, IntFunction<? super V> intFunction) -
Uses of MutableIntCollection in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with type parameters of type MutableIntCollectionModifier and TypeMethodDescriptionstatic <T,
R extends MutableIntCollection>
RIterableIterate.collectInt
(Iterable<T> iterable, IntFunction<? super T> intFunction, R target) static <T,
R extends MutableIntCollection>
RIteratorIterate.collectInt
(Iterator<T> iterator, IntFunction<? super T> intFunction, R target) static <T,
R extends MutableIntCollection>
RRandomAccessListIterate.collectInt
(List<T> list, IntFunction<? super T> intFunction, R target) Methods in org.eclipse.collections.impl.utility.internal that return MutableIntCollectionModifier and TypeMethodDescriptionstatic <T> MutableIntCollection
IterableIterate.collectInt
(Iterable<T> iterable, IntFunction<? super T> intFunction) static <T> MutableIntCollection
IteratorIterate.collectInt
(Iterator<T> iterator, IntFunction<? super T> intFunction) -
Uses of MutableIntCollection in org.eclipse.collections.impl.utility.internal.primitive
Methods in org.eclipse.collections.impl.utility.internal.primitive with type parameters of type MutableIntCollectionModifier and TypeMethodDescriptionstatic <R extends MutableIntCollection>
RIntIterableIterate.reject
(IntIterable iterable, IntPredicate predicate, R targetCollection) static <R extends MutableIntCollection>
RIntIteratorIterate.reject
(IntIterator iterator, IntPredicate predicate, R targetCollection) static <R extends MutableIntCollection>
RIntIterableIterate.select
(IntIterable iterable, IntPredicate predicate, R targetCollection) static <R extends MutableIntCollection>
RIntIteratorIterate.select
(IntIterator iterator, IntPredicate predicate, R targetCollection)