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.
-
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 targetMutableIntCollectionwith 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 targetMutableIntCollectionwith 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 targetMutableIntCollectionwith 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 targetMutableIntCollectionwith 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 targetMutableIntCollectionwith 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 targetMutableIntCollectionwith 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 targetMutableIntCollectionwith 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 specifiedtargetcollection.default <R extends MutableIntCollection>
RShortIterable.collectInt(ShortToIntFunction function, R target) Returns the targetMutableIntCollectionwith 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 TypeInterfaceDescriptioninterfaceThis 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 MutableIntCollectionMutableCollection.collectInt(IntFunction<? super T> intFunction) Returns a new primitiveintiterable 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 MutableIntCollectionMutableIntCollection.newEmpty()Creates a new empty mutable version of the same collection type.MutableIntCollection.reject(IntPredicate predicate) MutableIntCollection.select(IntPredicate predicate) default MutableIntCollectionMutableIntCollection.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 TypeInterfaceDescriptioninterfaceThis 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 TypeInterfaceDescriptioninterfaceThis file was automatically generated from template file mutablePrimitiveSet.stg.