Uses of Interface
org.eclipse.collections.api.block.function.primitive.IntFunction
-
Packages that use IntFunction Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.sorted This package contains interfaces for SortedBag API.org.eclipse.collections.api.collection org.eclipse.collections.api.factory.map.primitive org.eclipse.collections.api.list This package contains interfaces for list API which enhance the performance and functionality ofList
.org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMap
org.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.org.eclipse.collections.api.map.sorted This package contains mutable and immutable sorted map interfaces.org.eclipse.collections.api.ordered org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet
.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API.org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl This package contains implementations for Eclipse Collections API.org.eclipse.collections.impl.bag org.eclipse.collections.impl.bag.immutable This package contains implementations of theImmutableBag
interface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBag
interface.org.eclipse.collections.impl.bag.mutable.primitive This package contains implementations of the mutable primitive bag interfaces.org.eclipse.collections.impl.bag.sorted.immutable org.eclipse.collections.impl.bag.sorted.mutable This package contains implementations ofMutableSortedBag
.org.eclipse.collections.impl.bimap org.eclipse.collections.impl.bimap.immutable org.eclipse.collections.impl.bimap.mutable This package contains implementations of theMutableBiMap
interface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparator
interface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction
,Predicate
,SerializableComparator
andProcedure
.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedure
andProcedure2
.org.eclipse.collections.impl.block.procedure.primitive This package contains implementations of primitive procedures.org.eclipse.collections.impl.collection org.eclipse.collections.impl.collection.immutable This package contains implementations of theImmutableCollection
interface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollection
interface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterable
interface.org.eclipse.collections.impl.lazy.parallel org.eclipse.collections.impl.lazy.primitive This package contains implementations of the lazy primitive iterator interfaces.org.eclipse.collections.impl.list.fixed This package contains implementations of theFixedSizeList
interface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableList
interface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableList
interface.org.eclipse.collections.impl.map This package contains implementations of theMapIterable
interface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMap
interface.org.eclipse.collections.impl.map.immutable.primitive This package contains implementations of the immutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.mutable This package contains implementations of theMutableMap
interface.org.eclipse.collections.impl.map.mutable.primitive This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMap
interface.org.eclipse.collections.impl.parallel This package contains classes which is used for parallel iteration through the containers.org.eclipse.collections.impl.set.immutable This package contains the implementations ofImmutableSet
.org.eclipse.collections.impl.set.mutable This package contains implementations ofMutableSet
.org.eclipse.collections.impl.set.sorted.immutable This package contains implementations ofImmutableSortedSet
.org.eclipse.collections.impl.set.sorted.mutable This package contains implementations ofMutableSortedSet
.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface.org.eclipse.collections.impl.utility This package contains static utilities that provide iteration pattern implementations which work with JCF collections.org.eclipse.collections.impl.utility.internal This package contains static utilities that provide internal iteration pattern implementations which work with JCF collections. -
-
Uses of IntFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntFunction Modifier and Type Method Description LazyIntIterable
LazyIterable. collectInt(IntFunction<? super T> intFunction)
Returns a lazy IntIterable which will transform the underlying iterable data to int values based on the intFunction.IntIterable
RichIterable. 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.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.<V> ObjectLongMap<V>
RichIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
Groups and sums the values using the two specified functions.default java.util.IntSummaryStatistics
RichIterable. summarizeInt(IntFunction<? super T> function)
Returns the result of summarizing the value returned from applying the IntFunction to each element of the iterable.long
ParallelIterable. sumOfInt(IntFunction<? super T> function)
Returns the final long result of evaluating function for each element of the iterable in parallel and adding the results together.long
RichIterable. sumOfInt(IntFunction<? super T> function)
Returns the final long result of evaluating function for each element of the iterable and adding the results together. -
Uses of IntFunction in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
ImmutableBag. collectInt(IntFunction<? super T> intFunction)
default MutableIntBag
MutableBag. collectInt(IntFunction<? super T> intFunction)
IntBag
UnsortedBag. collectInt(IntFunction<? super T> intFunction)
default java.util.IntSummaryStatistics
Bag. summarizeInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.api.bag.sorted
Methods in org.eclipse.collections.api.bag.sorted with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
ImmutableSortedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntList
MutableSortedBag. collectInt(IntFunction<? super T> intFunction)
IntList
SortedBag. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type IntFunction Modifier and Type Method Description ImmutableIntCollection
ImmutableCollection. collectInt(IntFunction<? super T> intFunction)
default 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.<V> ImmutableObjectLongMap<V>
ImmutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.api.factory.map.primitive
Methods in org.eclipse.collections.api.factory.map.primitive with parameters of type IntFunction Modifier and Type Method Description <T> ImmutableByteIntMap
ImmutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableCharIntMap
ImmutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableDoubleIntMap
ImmutableDoubleIntMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableFloatIntMap
ImmutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableFloatIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntBooleanMap
ImmutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anImmutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntByteMap
ImmutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anImmutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntCharMap
ImmutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anImmutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntDoubleMap
ImmutableIntDoubleMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anImmutableIntDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntFloatMap
ImmutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anImmutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntIntMap
ImmutableIntIntMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableIntIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntLongMap
ImmutableIntLongMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anImmutableIntLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,V>
ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anImmutableIntObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableIntShortMap
ImmutableIntShortMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anImmutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableLongIntMap
ImmutableLongIntMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableLongIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,K>
ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableObjectIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> ImmutableShortIntMap
ImmutableShortIntMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anImmutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableByteIntMap
MutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableByteIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableCharIntMap
MutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableCharIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableDoubleIntMap
MutableDoubleIntMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableDoubleIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableFloatIntMap
MutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableFloatIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntBooleanMap
MutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
Creates anMutableIntBooleanMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntByteMap
MutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
Creates anMutableIntByteMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntCharMap
MutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
Creates anMutableIntCharMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntDoubleMap
MutableIntDoubleMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
Creates anMutableIntDoubleMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntFloatMap
MutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
Creates anMutableIntFloatMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntIntMap
MutableIntIntMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableIntIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntLongMap
MutableIntLongMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
Creates anMutableIntLongMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,V>
MutableIntObjectMap<V>MutableIntObjectMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
Creates anMutableIntObjectMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableIntShortMap
MutableIntShortMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
Creates anMutableIntShortMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableLongIntMap
MutableLongIntMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableLongIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T,K>
MutableObjectIntMap<K>MutableObjectIntMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableObjectIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
.<T> MutableShortIntMap
MutableShortIntMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
Creates anMutableShortIntMap
from anIterable<T>
by applyingkeyFunction
andvalueFunction
. -
Uses of IntFunction in org.eclipse.collections.api.list
Methods in org.eclipse.collections.api.list with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
ImmutableList. collectInt(IntFunction<? super T> intFunction)
IntList
ListIterable. collectInt(IntFunction<? super T> intFunction)
default MutableIntList
MutableList. collectInt(IntFunction<? super T> intFunction)
MultiReaderList<T>
MultiReaderList. sortThisByInt(IntFunction<? super T> function)
MutableList<T>
MutableList. sortThisByInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
ImmutableMap. collectInt(IntFunction<? super V> intFunction)
ImmutableIntList
ImmutableOrderedMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
MutableMap. collectInt(IntFunction<? super V> intFunction)
MutableIntList
MutableOrderedMap. collectInt(IntFunction<? super V> intFunction)
IntList
OrderedMap. collectInt(IntFunction<? super V> intFunction)
IntBag
UnsortedMapIterable. collectInt(IntFunction<? super V> intFunction)
<V1> MutableObjectLongMap<V1>
MutableMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
ImmutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
MutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)
IntBag
PrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)
<P> int
MutableByteIntMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableCharIntMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableDoubleIntMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableFloatIntMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableIntIntMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableLongIntMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableObjectIntMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.<P> int
MutableShortIntMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)
Retrieves the value associated with the key if one exists; if it does not, invokes the value function with the parameter and associates the result with the key.int
MutableObjectIntMap. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)
Retrieves the value associated with the key if one exists; if it does not, associates the result of invoking the value function with the key.<VV> ImmutableObjectLongMap<VV>
ImmutablePrimitiveObjectMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
MutablePrimitiveObjectMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.api.map.sorted
Methods in org.eclipse.collections.api.map.sorted with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
ImmutableSortedMap. collectInt(IntFunction<? super V> intFunction)
MutableIntList
MutableSortedMap. collectInt(IntFunction<? super V> intFunction)
IntList
SortedMapIterable. collectInt(IntFunction<? super V> intFunction)
-
Uses of IntFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type IntFunction Modifier and Type Method Description OrderedIntIterable
OrderedIterable. collectInt(IntFunction<? super T> intFunction)
ReversibleIntIterable
ReversibleIterable. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type IntFunction Modifier and Type Method Description ImmutableIntSet
ImmutableSet. collectInt(IntFunction<? super T> intFunction)
default MutableIntSet
MutableSet. collectInt(IntFunction<? super T> intFunction)
IntSet
UnsortedSetIterable. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
ImmutableSortedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntList
MutableSortedSet. collectInt(IntFunction<? super T> intFunction)
IntList
SortedSetIterable. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type IntFunction Modifier and Type Method Description ImmutableIntStack
ImmutableStack. collectInt(IntFunction<? super T> intFunction)
MutableIntStack
MutableStack. collectInt(IntFunction<? super T> intFunction)
IntStack
StackIterable. collectInt(IntFunction<? super T> intFunction)
<V> ImmutableObjectLongMap<V>
ImmutableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MutableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl
Fields in org.eclipse.collections.impl declared as IntFunction Modifier and Type Field Description static IntFunction<Counter>
Counter. TO_COUNT
Methods in org.eclipse.collections.impl with parameters of type IntFunction Modifier and Type Method Description IntIterable
UnmodifiableRichIterable. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RUnmodifiableRichIterable. collectInt(IntFunction<? super T> intFunction, R target)
<V> ObjectLongMap<V>
UnmodifiableRichIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
long
AbstractRichIterable. sumOfInt(IntFunction<? super T> function)
long
UnmodifiableRichIterable. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bag
Methods in org.eclipse.collections.impl.bag with parameters of type IntFunction Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractBag. collectInt(IntFunction<? super T> intFunction, R target)
protected MutableList<ObjectIntPair<T>>
AbstractBag. occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty)
long
AbstractBag. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bag.immutable
Methods in org.eclipse.collections.impl.bag.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
AbstractImmutableBag. collectInt(IntFunction<? super T> intFunction)
ImmutableIntBag
ImmutableEmptyBag. collectInt(IntFunction<? super T> intFunction)
<V> ImmutableObjectLongMap<V>
AbstractImmutableBagIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bag.mutable
Methods in org.eclipse.collections.impl.bag.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntBag
MultiReaderHashBag. collectInt(IntFunction<? super T> intFunction)
MutableIntBag
MultiReaderHashBag.UntouchableMutableBag. collectInt(IntFunction<? super T> intFunction)
MutableIntBag
SynchronizedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntBag
UnmodifiableBag. collectInt(IntFunction<? super T> intFunction)
<V> MutableObjectLongMap<V>
AbstractMutableBagIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
MultiReaderHashBag. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableBag. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bag.mutable.primitive
-
Uses of IntFunction in org.eclipse.collections.impl.bag.sorted.immutable
Methods in org.eclipse.collections.impl.bag.sorted.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
AbstractImmutableSortedBag. collectInt(IntFunction<? super T> intFunction)
private MutableList<ObjectIntPair<T>>
AbstractImmutableSortedBag. occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bag.sorted.mutable
Methods in org.eclipse.collections.impl.bag.sorted.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntList
AbstractMutableSortedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntList
SynchronizedSortedBag. collectInt(IntFunction<? super T> intFunction)
MutableIntList
UnmodifiableSortedBag. collectInt(IntFunction<? super T> intFunction)
<V> MutableObjectLongMap<V>
UnmodifiableSortedBag. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bimap
Methods in org.eclipse.collections.impl.bimap with parameters of type IntFunction Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractBiMap. collectInt(IntFunction<? super V> intFunction, R target)
long
AbstractBiMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bimap.immutable
Methods in org.eclipse.collections.impl.bimap.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
AbstractImmutableBiMap. collectInt(IntFunction<? super V> intFunction)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.bimap.mutable
Methods in org.eclipse.collections.impl.bimap.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntBag
AbstractMutableBiMap. collectInt(IntFunction<? super V> intFunction)
IntIterable
UnmodifiableBiMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableBiMap. collectInt(IntFunction<? super V> intFunction, R target)
<V1> MutableObjectLongMap<V1>
AbstractMutableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
long
UnmodifiableBiMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.block.comparator.primitive
Fields in org.eclipse.collections.impl.block.comparator.primitive declared as IntFunction Modifier and Type Field Description private IntFunction<T>
IntFunctionComparator. function
Constructors in org.eclipse.collections.impl.block.comparator.primitive with parameters of type IntFunction Constructor Description IntFunctionComparator(IntFunction<T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.block.factory
Classes in org.eclipse.collections.impl.block.factory that implement IntFunction Modifier and Type Class Description private static class
Functions.IntegerPassThruFunction
static class
Functions.IntFunctionChain<T1,T2>
static class
Functions.SizeFunction
private static class
PrimitiveFunctions.UnboxIntegerToInt
private static class
PrimitiveFunctions.UnboxNumberToInt
private static class
StringFunctions.LengthFunction
private static class
StringFunctions.ToPrimitiveIntFunction
Fields in org.eclipse.collections.impl.block.factory declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>
HashingStrategies.IntFunctionHashingStrategy. function
private IntFunction<? super T2>
Functions.IntFunctionChain. function2
private static IntFunction<java.lang.String>
StringFunctions. TO_PRIMITIVE_INT
Methods in org.eclipse.collections.impl.block.factory that return IntFunction Modifier and Type Method Description static IntFunction<java.lang.String>
StringFunctions. toPrimitiveInt()
static IntFunction<java.lang.Integer>
PrimitiveFunctions. unboxIntegerToInt()
static IntFunction<java.lang.Number>
PrimitiveFunctions. unboxNumberToInt()
Methods in org.eclipse.collections.impl.block.factory with parameters of type IntFunction Modifier and Type Method Description static <T> SerializableComparator<T>
Comparators. byIntFunction(IntFunction<T> function)
static <T1,T2>
Functions.IntFunctionChain<T1,T2>Functions. chainInt(Function<T1,T2> function1, IntFunction<? super T2> function2)
Functions.IntFunctionChain<T1,T3>
Functions.FunctionChain. chainInt(IntFunction<? super T3> function)
static <T> HashingStrategy<T>
HashingStrategies. fromIntFunction(IntFunction<? super T> function)
static <T,V>
Function2<MutableObjectLongMap<V>,T,MutableObjectLongMap<V>>PrimitiveFunctions. sumByIntFunction(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T> Procedure2<java.util.IntSummaryStatistics,T>
Procedures2. summarizeInt(IntFunction<? super T> function)
static <T> SerializableComparator<T>
Functions. toIntComparator(IntFunction<T> function)
Constructors in org.eclipse.collections.impl.block.factory with parameters of type IntFunction Constructor Description IntFunctionChain(Function<T1,T2> function1, IntFunction<? super T2> function2)
IntFunctionHashingStrategy(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.block.function.primitive
Classes in org.eclipse.collections.impl.block.function.primitive that implement IntFunction Modifier and Type Class Description class
IntegerFunctionImpl<T>
IntegerFunctionImpl is an abstract implementation of the IntFunction interface which can be subclassed explicitly or as an anonymous inner class, without needing to override the valueOf method defined in Function. -
Uses of IntFunction in org.eclipse.collections.impl.block.procedure
Fields in org.eclipse.collections.impl.block.procedure declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>
SumOfIntProcedure. function
Constructors in org.eclipse.collections.impl.block.procedure with parameters of type IntFunction Constructor Description SumOfIntProcedure(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.block.procedure.primitive
Fields in org.eclipse.collections.impl.block.procedure.primitive declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>
CollectIntProcedure. intFunction
Constructors in org.eclipse.collections.impl.block.procedure.primitive with parameters of type IntFunction Constructor Description CollectIntProcedure(IntFunction<? super T> intFunction, MutableIntCollection targetCollection)
-
Uses of IntFunction in org.eclipse.collections.impl.collection
Methods in org.eclipse.collections.impl.collection with parameters of type IntFunction Modifier and Type Method Description IntIterable
AbstractSynchronizedRichIterable. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RAbstractSynchronizedRichIterable. collectInt(IntFunction<? super T> intFunction, R target)
<V> ObjectLongMap<V>
AbstractSynchronizedRichIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
long
AbstractSynchronizedRichIterable. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.collection.immutable
Methods in org.eclipse.collections.impl.collection.immutable with parameters of type IntFunction Modifier and Type Method Description <V> ImmutableObjectLongMap<V>
AbstractImmutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.collection.mutable
Methods in org.eclipse.collections.impl.collection.mutable with parameters of type IntFunction Modifier and Type Method Description <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>
RAbstractMultiReaderMutableCollection.UntouchableMutableCollection. collectInt(IntFunction<? super T> intFunction, R target)
MutableIntCollection
AbstractSynchronizedMutableCollection. collectInt(IntFunction<? super T> intFunction)
MutableIntCollection
AbstractUnmodifiableMutableCollection. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RAbstractUnmodifiableMutableCollection. collectInt(IntFunction<? super T> intFunction, R target)
<V> MutableObjectLongMap<V>
AbstractCollectionAdapter. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractSynchronizedMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
AbstractUnmodifiableMutableCollection. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
long
AbstractCollectionAdapter. sumOfInt(IntFunction<? super T> function)
long
AbstractMultiReaderMutableCollection. sumOfInt(IntFunction<? super T> function)
long
AbstractMultiReaderMutableCollection.UntouchableMutableCollection. sumOfInt(IntFunction<? super T> function)
long
AbstractUnmodifiableMutableCollection. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.collector
Methods in org.eclipse.collections.impl.collector with parameters of type IntFunction Modifier and Type Method Description static <T,R extends MutableIntCollection>
java.util.stream.Collector<T,?,R>Collectors2. collectInt(IntFunction<? super T> function, java.util.function.Supplier<R> supplier)
Returns a new MutableIntCollection with the results of applying the specified IntFunction on each element of the source.static <T,V>
java.util.stream.Collector<T,?,MutableObjectLongMap<V>>Collectors2. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
Groups and sums the values using the two specified functions. -
Uses of IntFunction in org.eclipse.collections.impl.lazy
Methods in org.eclipse.collections.impl.lazy with parameters of type IntFunction Modifier and Type Method Description LazyIntIterable
AbstractLazyIterable. collectInt(IntFunction<? super T> intFunction)
<V> ObjectLongMap<V>
AbstractLazyIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.lazy.parallel
Methods in org.eclipse.collections.impl.lazy.parallel with parameters of type IntFunction Modifier and Type Method Description long
AbstractBatch. sumOfInt(IntFunction<? super T> function)
long
AbstractMultiReaderParallelIterable. sumOfInt(IntFunction<? super T> function)
long
AbstractParallelIterable. sumOfInt(IntFunction<? super T> function)
long
AbstractSynchronizedParallelIterable. sumOfInt(IntFunction<? super T> function)
long
Batch. sumOfInt(IntFunction<? super T> function)
long
NonParallelIterable. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>
CollectIntIterable. function
private IntFunction<? super T>
CollectIntIterable.IntFunctionToProcedure. function
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntFunction Constructor Description CollectIntIterable(LazyIterable<T> adapted, IntFunction<? super T> function)
IntFunctionToProcedure(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.list.fixed
Methods in org.eclipse.collections.impl.list.fixed with parameters of type IntFunction Modifier and Type Method Description MutableList<T>
EmptyList. sortThisByInt(IntFunction<? super T> function)
MutableList<T>
SingletonList. sortThisByInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.list.immutable
Methods in org.eclipse.collections.impl.list.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
AbstractImmutableList. collectInt(IntFunction<? super T> intFunction)
java.util.IntSummaryStatistics
ImmutableArrayList. summarizeInt(IntFunction<? super T> function)
long
AbstractImmutableList. sumOfInt(IntFunction<? super T> function)
long
ImmutableArrayList. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.list.mutable
Methods in org.eclipse.collections.impl.list.mutable with parameters of type IntFunction Modifier and Type Method Description <R extends MutableIntCollection>
RFastList. collectInt(IntFunction<? super T> intFunction, R target)
MutableIntList
MultiReaderFastList. collectInt(IntFunction<? super T> intFunction)
MutableIntList
MultiReaderFastList.UntouchableMutableList. collectInt(IntFunction<? super T> intFunction)
MutableIntList
SynchronizedMutableList. collectInt(IntFunction<? super T> intFunction)
MutableIntList
UnmodifiableMutableList. collectInt(IntFunction<? super T> intFunction)
MutableList<T>
AbstractListAdapter. sortThisByInt(IntFunction<? super T> function)
MutableList<T>
AbstractMutableList. sortThisByInt(IntFunction<? super T> function)
MultiReaderList<T>
MultiReaderFastList. sortThisByInt(IntFunction<? super T> function)
MutableList<T>
MultiReaderFastList.UntouchableMutableList. sortThisByInt(IntFunction<? super T> function)
MutableList<T>
SynchronizedMutableList. sortThisByInt(IntFunction<? super T> function)
MutableList<T>
UnmodifiableMutableList. sortThisByInt(IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
FastList. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
java.util.IntSummaryStatistics
FastList. summarizeInt(IntFunction<? super T> function)
long
AbstractMutableList. sumOfInt(IntFunction<? super T> function)
long
FastList. sumOfInt(IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map
Methods in org.eclipse.collections.impl.map with parameters of type IntFunction Modifier and Type Method Description <V1> MutableObjectLongMap<V1>
AbstractSynchronizedMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.immutable
Methods in org.eclipse.collections.impl.map.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
AbstractImmutableMap. collectInt(IntFunction<? super V> intFunction)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.immutable.primitive
Methods in org.eclipse.collections.impl.map.immutable.primitive with parameters of type IntFunction Modifier and Type Method Description ImmutableIntBag
ImmutableByteObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableByteObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableByteObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableByteObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableByteObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableByteObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableCharObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableCharObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableCharObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableCharObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableCharObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableCharObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableDoubleObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableDoubleObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableDoubleObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableDoubleObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableFloatObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableFloatObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableFloatObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableFloatObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableIntObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableIntObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableIntObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableIntObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableIntObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableIntObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableLongObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableLongObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableLongObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableLongObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableLongObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableLongObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableShortObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableShortObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableShortObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)
ImmutableIntBag
ImmutableShortObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RImmutableShortObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)
<T> ImmutableByteIntMap
ImmutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableCharIntMap
ImmutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableDoubleIntMap
ImmutableDoubleIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableFloatIntMap
ImmutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableIntBooleanMap
ImmutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> ImmutableIntByteMap
ImmutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> ImmutableIntCharMap
ImmutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> ImmutableIntDoubleMap
ImmutableIntDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> ImmutableIntFloatMap
ImmutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> ImmutableIntIntMap
ImmutableIntIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableIntLongMap
ImmutableIntLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
ImmutableIntObjectMap<V>ImmutableIntObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> ImmutableIntShortMap
ImmutableIntShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> ImmutableLongIntMap
ImmutableLongIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T,K>
ImmutableObjectIntMap<K>ImmutableObjectIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)
<T> ImmutableShortIntMap
ImmutableShortIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableByteObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableCharObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableDoubleObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableFloatObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableIntObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableLongObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> ImmutableObjectLongMap<V1>
ImmutableShortObjectEmptyMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
long
ImmutableByteObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableByteObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableByteObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableCharObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableCharObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableCharObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableDoubleObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableDoubleObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableDoubleObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableFloatObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableFloatObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableFloatObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableIntObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableIntObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableIntObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableLongObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableLongObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableLongObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableShortObjectEmptyMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableShortObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ImmutableShortObjectSingletonMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.mutable
Methods in org.eclipse.collections.impl.map.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntBag
AbstractMutableMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedMutableMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
UnmodifiableMutableMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableMutableMap. collectInt(IntFunction<? super V> intFunction, R target)
<V1> MutableObjectLongMap<V1>
AbstractMutableMapIterable. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableMutableMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
long
UnmodifiableMutableMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntFunction Modifier and Type Method Description MutableIntBag
ByteObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
CharObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
DoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
FloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
IntObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
LongObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
ShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)
MutableIntBag
SynchronizedByteObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedByteObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
SynchronizedCharObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedCharObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
SynchronizedDoubleObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedDoubleObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
SynchronizedFloatObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedFloatObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
SynchronizedIntObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedIntObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
SynchronizedLongObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedLongObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
SynchronizedShortObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RSynchronizedShortObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableByteObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableByteObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableCharObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableCharObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableDoubleObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableDoubleObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableFloatObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableFloatObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableIntObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableIntObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableLongObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableLongObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
MutableIntBag
UnmodifiableShortObjectMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableShortObjectMap. collectInt(IntFunction<? super V> intFunction, R target)
<T> MutableByteIntMap
MutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableCharIntMap
MutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableDoubleIntMap
MutableDoubleIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableFloatIntMap
MutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableIntBooleanMap
MutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)
<T> MutableIntByteMap
MutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)
<T> MutableIntCharMap
MutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)
<T> MutableIntDoubleMap
MutableIntDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)
<T> MutableIntFloatMap
MutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)
<T> MutableIntIntMap
MutableIntIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableIntLongMap
MutableIntLongMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)
<T,V>
MutableIntObjectMap<V>MutableIntObjectMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)
<T> MutableIntShortMap
MutableIntShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)
<T> MutableLongIntMap
MutableLongIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<T,K>
MutableObjectIntMap<K>MutableObjectIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)
<T> MutableShortIntMap
MutableShortIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)
<P> int
ByteIntHashMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)
<P> int
CharIntHashMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)
<P> int
DoubleIntHashMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)
<P> int
FloatIntHashMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)
<P> int
IntIntHashMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)
<P> int
LongIntHashMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)
<P> int
ObjectIntHashMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)
<P> int
ObjectIntHashMapWithHashingStrategy. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)
<P> int
ShortIntHashMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedByteIntMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedCharIntMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedDoubleIntMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedFloatIntMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedIntIntMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedLongIntMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedObjectIntMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)
<P> int
SynchronizedShortIntMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableByteIntMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableCharIntMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableDoubleIntMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableFloatIntMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableIntIntMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableLongIntMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableObjectIntMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)
<P> int
UnmodifiableShortIntMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)
int
ObjectIntHashMap. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)
int
ObjectIntHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)
int
SynchronizedObjectIntMap. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)
int
UnmodifiableObjectIntMap. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)
<V1> MutableObjectLongMap<V1>
ByteObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
CharObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
DoubleObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
FloatObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
IntObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
LongObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
ShortObjectHashMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
SynchronizedShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableByteObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableCharObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableDoubleObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableFloatObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableIntObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableLongObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<V1> MutableObjectLongMap<V1>
UnmodifiableShortObjectMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
long
ByteObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
CharObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
DoubleObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
FloatObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
IntObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
LongObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
ShortObjectHashMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedByteObjectMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedCharObjectMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedDoubleObjectMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedFloatObjectMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedIntObjectMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedLongObjectMap. sumOfInt(IntFunction<? super V> function)
long
SynchronizedShortObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableByteObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableCharObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableDoubleObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableFloatObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableIntObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableLongObjectMap. sumOfInt(IntFunction<? super V> function)
long
UnmodifiableShortObjectMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.ordered.mutable
Methods in org.eclipse.collections.impl.map.ordered.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntList
OrderedMapAdapter. collectInt(IntFunction<? super V> intFunction)
MutableIntList
UnmodifiableMutableOrderedMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableMutableOrderedMap. collectInt(IntFunction<? super V> intFunction, R target)
<V1> MutableObjectLongMap<V1>
OrderedMapAdapter. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
<VV> MutableObjectLongMap<VV>
UnmodifiableMutableOrderedMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)
java.util.IntSummaryStatistics
UnmodifiableMutableOrderedMap. summarizeInt(IntFunction<? super V> function)
long
UnmodifiableMutableOrderedMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.sorted.immutable
Methods in org.eclipse.collections.impl.map.sorted.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
AbstractImmutableSortedMap. collectInt(IntFunction<? super V> intFunction)
<V1> ImmutableObjectLongMap<V1>
AbstractImmutableSortedMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.map.sorted.mutable
Methods in org.eclipse.collections.impl.map.sorted.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntList
AbstractMutableSortedMap. collectInt(IntFunction<? super V> intFunction)
MutableIntList
SynchronizedSortedMap. collectInt(IntFunction<? super V> intFunction)
MutableIntList
UnmodifiableTreeMap. collectInt(IntFunction<? super V> intFunction)
<R extends MutableIntCollection>
RUnmodifiableTreeMap. collectInt(IntFunction<? super V> intFunction, R target)
<V1> MutableObjectLongMap<V1>
UnmodifiableTreeMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)
long
UnmodifiableTreeMap. sumOfInt(IntFunction<? super V> function)
-
Uses of IntFunction in org.eclipse.collections.impl.parallel
Fields in org.eclipse.collections.impl.parallel declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>
ParallelIterate.SumByIntProcedure. function
Methods in org.eclipse.collections.impl.parallel with parameters of type IntFunction Modifier and Type Method Description static <T,V>
ObjectLongMap<V>ParallelIterate. sumByInt(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
Constructors in org.eclipse.collections.impl.parallel with parameters of type IntFunction Constructor Description SumByIntProcedure(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.set.immutable
Methods in org.eclipse.collections.impl.set.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntSet
AbstractImmutableSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.impl.set.mutable
Methods in org.eclipse.collections.impl.set.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntSet
MultiReaderUnifiedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntSet
MultiReaderUnifiedSet.UntouchableMutableSet. collectInt(IntFunction<? super T> intFunction)
MutableIntSet
SynchronizedMutableSet. collectInt(IntFunction<? super T> intFunction)
MutableIntSet
UnmodifiableMutableSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.impl.set.sorted.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntList
AbstractImmutableSortedSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.impl.set.sorted.mutable
Methods in org.eclipse.collections.impl.set.sorted.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntList
SortedSetAdapter. collectInt(IntFunction<? super T> intFunction)
MutableIntList
SynchronizedSortedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntList
TreeSortedSet. collectInt(IntFunction<? super T> intFunction)
MutableIntList
UnmodifiableSortedSet. collectInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntStack
ImmutableArrayStack. collectInt(IntFunction<? super T> intFunction)
Deprecated.<R extends MutableIntCollection>
RImmutableArrayStack. collectInt(IntFunction<? super T> intFunction, R target)
Deprecated.ImmutableIntStack
ImmutableEmptyStack. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RImmutableEmptyStack. collectInt(IntFunction<? super T> intFunction, R target)
ImmutableIntStack
ImmutableNotEmptyStack. collectInt(IntFunction<? super T> function)
<V> ImmutableObjectLongMap<V>
ImmutableArrayStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
Deprecated.<V> ImmutableObjectLongMap<V>
ImmutableEmptyStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> ImmutableObjectLongMap<V>
ImmutableNotEmptyStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
long
ImmutableArrayStack. sumOfInt(IntFunction<? super T> intFunction)
Deprecated. -
Uses of IntFunction in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable with parameters of type IntFunction Modifier and Type Method Description MutableIntStack
ArrayStack. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RArrayStack. collectInt(IntFunction<? super T> intFunction, R target)
MutableIntStack
SynchronizedStack. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RSynchronizedStack. collectInt(IntFunction<? super T> intFunction, R target)
MutableIntStack
UnmodifiableStack. collectInt(IntFunction<? super T> intFunction)
<R extends MutableIntCollection>
RUnmodifiableStack. collectInt(IntFunction<? super T> intFunction, R target)
<V> MutableObjectLongMap<V>
ArrayStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
SynchronizedStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
<V> MutableObjectLongMap<V>
UnmodifiableStack. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
long
ArrayStack. sumOfInt(IntFunction<? super T> intFunction)
long
SynchronizedStack. sumOfInt(IntFunction<? super T> intFunction)
long
UnmodifiableStack. sumOfInt(IntFunction<? super T> intFunction)
-
Uses of IntFunction in org.eclipse.collections.impl.utility
Methods in org.eclipse.collections.impl.utility with parameters of type IntFunction Modifier and Type Method Description static <T> MutableIntList
ArrayIterate. collectInt(T[] objectArray, IntFunction<? super T> intFunction)
static <T,R extends MutableIntCollection>
RArrayIterate. collectInt(T[] objectArray, IntFunction<? super T> intFunction, R target)
static <T> MutableIntList
ArrayListIterate. collectInt(java.util.ArrayList<T> list, IntFunction<? super T> intFunction)
static <T,R extends MutableIntCollection>
RArrayListIterate. collectInt(java.util.ArrayList<T> list, IntFunction<? super T> intFunction, R target)
static <T> MutableIntCollection
Iterate. collectInt(java.lang.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 <T,R extends MutableIntCollection>
RIterate. collectInt(java.lang.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> MutableIntList
ListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction)
static <T,R extends MutableIntCollection>
RListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction, R target)
static <K,V>
MutableIntCollectionMapIterate. collectInt(java.util.Map<K,V> map, IntFunction<? super V> intFunction)
static <K,V,R extends MutableIntCollection>
RMapIterate. collectInt(java.util.Map<K,V> map, IntFunction<? super V> intFunction, R target)
private static <T,R extends MutableIntCollection>
RArrayListIterate. collectIntFromInternalArray(java.util.ArrayList<T> source, IntFunction<? super T> intFunction, int elementsToCollect, R target)
static <V,T>
ObjectLongMap<V>ArrayIterate. sumByInt(T[] array, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T,V>
ObjectLongMap<V>Iterate. sumByInt(java.lang.Iterable<T> iterable, Function<T,V> groupBy, IntFunction<? super T> function)
static <V,T>
ObjectLongMap<V>ListIterate. sumByInt(java.util.List<T> list, Function<T,V> groupBy, IntFunction<? super T> function)
static <T> long
ArrayIterate. sumOfInt(T[] array, IntFunction<? super T> function)
static <T> long
Iterate. sumOfInt(java.lang.Iterable<T> iterable, IntFunction<? super T> function)
static <T> long
ListIterate. sumOfInt(java.util.List<T> list, IntFunction<? super T> function)
-
Uses of IntFunction in org.eclipse.collections.impl.utility.internal
Methods in org.eclipse.collections.impl.utility.internal with parameters of type IntFunction Modifier and Type Method Description static <T> MutableIntCollection
IterableIterate. collectInt(java.lang.Iterable<T> iterable, IntFunction<? super T> intFunction)
static <T,R extends MutableIntCollection>
RIterableIterate. collectInt(java.lang.Iterable<T> iterable, IntFunction<? super T> intFunction, R target)
static <T> MutableIntCollection
IteratorIterate. collectInt(java.util.Iterator<T> iterator, IntFunction<? super T> intFunction)
static <T,R extends MutableIntCollection>
RIteratorIterate. collectInt(java.util.Iterator<T> iterator, IntFunction<? super T> intFunction, R target)
static <T> MutableIntList
RandomAccessListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction)
static <T,R extends MutableIntCollection>
RRandomAccessListIterate. collectInt(java.util.List<T> list, IntFunction<? super T> intFunction, R target)
static <V,T>
MutableObjectLongMap<V>InternalArrayIterate. sumByInt(T[] array, int size, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <V,T>
ObjectLongMap<V>IterableIterate. sumByInt(java.lang.Iterable<T> iterable, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <V,T>
ObjectLongMap<V>RandomAccessListIterate. sumByInt(java.util.List<T> list, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)
static <T> java.util.IntSummaryStatistics
InternalArrayIterate. summarizeInt(T[] items, int size, IntFunction<? super T> function)
static <T> long
InternalArrayIterate. sumOfInt(T[] array, int size, IntFunction<? super T> function)
static <T> long
IterableIterate. sumOfInt(java.lang.Iterable<T> iterable, IntFunction<? super T> function)
static <T> long
IteratorIterate. sumOfInt(java.util.Iterator<T> iterator, IntFunction<? super T> function)
static <T> long
RandomAccessListIterate. sumOfInt(java.util.List<T> list, IntFunction<? super T> function)
-