Uses of Interface
org.eclipse.collections.api.block.function.primitive.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 of
List. |
| org.eclipse.collections.api.map |
This package contains interfaces for map API which enhance the performance and functionality of
Map |
| 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 of
Set. |
| 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 the
ImmutableBag interface. |
| org.eclipse.collections.impl.bag.mutable |
This package contains implementations of the
MutableBag interface. |
| org.eclipse.collections.impl.bag.sorted.mutable |
This package contains implementations of
MutableSortedBag. |
| org.eclipse.collections.impl.bimap | |
| org.eclipse.collections.impl.bimap.immutable | |
| org.eclipse.collections.impl.bimap.mutable |
This package contains implementations of the
MutableBiMap interface. |
| org.eclipse.collections.impl.block.comparator.primitive |
This package contains implementations of the
SerializableComparator interface to compare primitive double, int and long. |
| org.eclipse.collections.impl.block.factory |
This package contains factory implementations for
Function, Predicate, SerializableComparator and Procedure. |
| org.eclipse.collections.impl.block.function.primitive |
This package contains implementations of primitive functions.
|
| org.eclipse.collections.impl.block.procedure |
This package contains implementations of
Procedure and Procedure2. |
| 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 the
ImmutableCollection interface. |
| org.eclipse.collections.impl.collection.mutable |
This package contains implementations of the
MutableCollection interface. |
| org.eclipse.collections.impl.collector | |
| org.eclipse.collections.impl.lazy |
This package contains implementations of the
LazyIterable 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.mutable |
This package contains implementations of the
MutableList interface. |
| org.eclipse.collections.impl.map |
This package contains implementations of the
MapIterable interface. |
| org.eclipse.collections.impl.map.immutable |
This package contains implementations of the
ImmutableMap 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 the
MutableMap 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 the
MutableSortedMap interface. |
| org.eclipse.collections.impl.map.sorted.mutable |
This package contains implementations of the
MutableSortedMap interface. |
| org.eclipse.collections.impl.parallel |
This package contains classes which is used for parallel iteration through the containers.
|
| org.eclipse.collections.impl.set | |
| org.eclipse.collections.impl.set.immutable |
This package package contains the implementations of
ImmutableSet. |
| org.eclipse.collections.impl.set.mutable |
This package package contains implementations of
MutableSet. |
| org.eclipse.collections.impl.set.sorted.mutable |
This package contains implementations of
MutableSortedSet. |
| org.eclipse.collections.impl.stack.mutable |
This package contains implementations of the
MutableStack 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 LazyIntIterableLazyIterable. collectInt(IntFunction<? super T> intFunction)Returns a lazy IntIterable which will transform the underlying iterable data to int values based on the intFunction.IntIterableRichIterable. collectInt(IntFunction<? super T> intFunction)Returns a new primitiveintiterable with the results of applying the specified function on each element of the source collection.<R extends MutableIntCollection>
RRichIterable. collectInt(IntFunction<? super T> intFunction, R target)Same asRichIterable.collectInt(IntFunction), except that the results are gathered into the specifiedtargetcollection.<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 IntSummaryStatisticsRichIterable. summarizeInt(IntFunction<? super T> function)Returns the result of summarizing the value returned from applying the IntFunction to each element of the iterable.longParallelIterable. 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.longRichIterable. 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 ImmutableIntBagImmutableBag. collectInt(IntFunction<? super T> intFunction)MutableIntBagMutableBag. collectInt(IntFunction<? super T> intFunction)IntBagUnsortedBag. collectInt(IntFunction<? super T> intFunction)default IntSummaryStatisticsBag. 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 ImmutableIntListImmutableSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListMutableSortedBag. collectInt(IntFunction<? super T> intFunction)IntListSortedBag. 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 ImmutableIntCollectionImmutableCollection. collectInt(IntFunction<? super T> intFunction)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.<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> ImmutableByteIntMapImmutableByteIntMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharIntMapImmutableCharIntMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatIntMapImmutableFloatIntMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntByteMapImmutableIntByteMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntCharMapImmutableIntCharMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntFloatMapImmutableIntFloatMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntIntMapImmutableIntIntMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntLongMapImmutableIntLongMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableIntObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntShortMapImmutableIntShortMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongIntMapImmutableLongIntMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortIntMapImmutableShortIntMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteIntMapMutableByteIntMapFactory. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharIntMapMutableCharIntMapFactory. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleIntMapMutableDoubleIntMapFactory. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatIntMapMutableFloatIntMapFactory. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntBooleanMapMutableIntBooleanMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntByteMapMutableIntByteMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntCharMapMutableIntCharMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntDoubleMapMutableIntDoubleMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntFloatMapMutableIntFloatMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntIntMapMutableIntIntMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntLongMapMutableIntLongMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, V> MutableIntObjectMap<V>MutableIntObjectMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableIntObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntShortMapMutableIntShortMapFactory. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongIntMapMutableLongIntMapFactory. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T, K> MutableObjectIntMap<K>MutableObjectIntMapFactory. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortIntMapMutableShortIntMapFactory. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction. -
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 ImmutableIntListImmutableList. collectInt(IntFunction<? super T> intFunction)IntListListIterable. collectInt(IntFunction<? super T> intFunction)MutableIntListMutableList. collectInt(IntFunction<? super T> intFunction)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 ImmutableIntBagImmutableMap. collectInt(IntFunction<? super V> intFunction)ImmutableIntListImmutableOrderedMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagMutableMap. collectInt(IntFunction<? super V> intFunction)MutableIntListMutableOrderedMap. collectInt(IntFunction<? super V> intFunction)IntListOrderedMap. collectInt(IntFunction<? super V> intFunction)IntBagUnsortedMapIterable. 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 ImmutableIntBagImmutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagMutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)IntBagPrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)<P> intMutableByteIntMap. 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> intMutableCharIntMap. 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> intMutableDoubleIntMap. 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> intMutableFloatIntMap. 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> intMutableIntIntMap. 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> intMutableLongIntMap. 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> intMutableObjectIntMap. 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> intMutableShortIntMap. 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.intMutableObjectIntMap. 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 ImmutableIntListImmutableSortedMap. collectInt(IntFunction<? super V> intFunction)MutableIntListMutableSortedMap. collectInt(IntFunction<? super V> intFunction)IntListSortedMapIterable. 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 OrderedIntIterableOrderedIterable. collectInt(IntFunction<? super T> intFunction)ReversibleIntIterableReversibleIterable. 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 ImmutableIntSetImmutableSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetMutableSet. collectInt(IntFunction<? super T> intFunction)IntSetUnsortedSetIterable. 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 ImmutableIntListImmutableSortedSet. collectInt(IntFunction<? super T> intFunction)MutableIntListMutableSortedSet. collectInt(IntFunction<? super T> intFunction)IntListSortedSetIterable. 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 ImmutableIntStackImmutableStack. collectInt(IntFunction<? super T> intFunction)MutableIntStackMutableStack. collectInt(IntFunction<? super T> intFunction)IntStackStackIterable. 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_COUNTMethods in org.eclipse.collections.impl with parameters of type IntFunction Modifier and Type Method Description <R extends MutableIntCollection>
RAbstractRichIterable. collectInt(IntFunction<? super T> intFunction, R target)IntIterableUnmodifiableRichIterable. 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)longAbstractRichIterable. sumOfInt(IntFunction<? super T> function)longUnmodifiableRichIterable. 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)longAbstractBag. 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 ImmutableIntBagAbstractImmutableBag. 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 MutableIntBagAbstractMutableBag. collectInt(IntFunction<? super T> intFunction)MutableIntBagMultiReaderHashBag. collectInt(IntFunction<? super T> intFunction)MutableIntBagSynchronizedBag. collectInt(IntFunction<? super T> intFunction)MutableIntBagUnmodifiableBag. collectInt(IntFunction<? super T> intFunction)<V> MutableObjectLongMap<V>AbstractMutableBagIterable. sumByInt(Function<? super T,? extends V> groupBy, IntFunction<? super 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 MutableIntListAbstractMutableSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableSortedBag. collectInt(IntFunction<? super T> intFunction) -
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)longAbstractBiMap. 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 ImmutableIntBagAbstractImmutableBiMap. 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 IntIterableUnmodifiableBiMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableBiMap. collectInt(IntFunction<? super V> intFunction, R target)<V1> MutableObjectLongMap<V1>UnmodifiableBiMap. sumByInt(Function<? super V,? extends V1> groupBy, IntFunction<? super V> function)longUnmodifiableBiMap. sumOfInt(IntFunction<? super V> function) -
Uses of IntFunction in org.eclipse.collections.impl.block.comparator.primitive
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 static classFunctions.IntFunctionChain<T1,T2>static classFunctions.SizeFunctionMethods in org.eclipse.collections.impl.block.factory that return IntFunction Modifier and Type Method Description static IntFunction<String>StringFunctions. toPrimitiveInt()static IntFunction<Integer>PrimitiveFunctions. unboxIntegerToInt()static IntFunction<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<IntSummaryStatistics,T>Procedures2. summarizeInt(IntFunction<? super T> function)static <T> SerializableComparator<T>Functions. toIntComparator(IntFunction<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 classIntegerFunctionImpl<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
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
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 IntIterableAbstractSynchronizedRichIterable. 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)longAbstractSynchronizedRichIterable. 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 MutableIntCollectionAbstractCollectionAdapter. collectInt(IntFunction<? super T> intFunction)<R extends MutableIntCollection>
RAbstractCollectionAdapter. collectInt(IntFunction<? super T> intFunction, R target)<R extends MutableIntCollection>
RAbstractMultiReaderMutableCollection. collectInt(IntFunction<? super T> intFunction, R target)MutableIntCollectionAbstractSynchronizedMutableCollection. collectInt(IntFunction<? super T> intFunction)MutableIntCollectionAbstractUnmodifiableMutableCollection. 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>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)longAbstractCollectionAdapter. sumOfInt(IntFunction<? super T> function)longAbstractMultiReaderMutableCollection. sumOfInt(IntFunction<? super T> function)longAbstractUnmodifiableMutableCollection. 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>
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.static <T, V> 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 LazyIntIterableAbstractLazyIterable. 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 longAbstractBatch. sumOfInt(IntFunction<? super T> function)longAbstractMultiReaderParallelIterable. sumOfInt(IntFunction<? super T> function)longAbstractParallelIterable. sumOfInt(IntFunction<? super T> function)longAbstractSynchronizedParallelIterable. sumOfInt(IntFunction<? super T> function)longBatch. sumOfInt(IntFunction<? super T> function)longNonParallelIterable. sumOfInt(IntFunction<? super T> function) -
Uses of IntFunction in org.eclipse.collections.impl.lazy.primitive
Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntFunction Constructor Description CollectIntIterable(LazyIterable<T> adapted, 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 MutableIntListAbstractListAdapter. collectInt(IntFunction<? super T> intFunction)MutableIntListAbstractMutableList. collectInt(IntFunction<? super T> intFunction)MutableIntListArrayListAdapter. collectInt(IntFunction<? super T> intFunction)MutableIntListFastList. collectInt(IntFunction<? super T> intFunction)<R extends MutableIntCollection>
RFastList. collectInt(IntFunction<? super T> intFunction, R target)MutableIntListMultiReaderFastList. collectInt(IntFunction<? super T> intFunction)MutableIntListRandomAccessListAdapter. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedMutableList. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableMutableList. collectInt(IntFunction<? super T> intFunction)MutableList<T>AbstractListAdapter. sortThisByInt(IntFunction<? super T> function)MutableList<T>AbstractMutableList. sortThisByInt(IntFunction<? super T> function)MutableList<T>MultiReaderFastList. 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)IntSummaryStatisticsFastList. summarizeInt(IntFunction<? super T> function)longAbstractMutableList. sumOfInt(IntFunction<? super T> function)longFastList. 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 ImmutableIntBagAbstractImmutableMap. 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 <T> ImmutableByteIntMapImmutableByteIntMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableCharIntMapImmutableCharIntMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactoryImpl. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableFloatIntMapImmutableFloatIntMapFactoryImpl. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableIntByteMapImmutableIntByteMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableIntCharMapImmutableIntCharMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableIntFloatMapImmutableIntFloatMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableIntIntMapImmutableIntIntMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableIntLongMapImmutableIntLongMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)<T, V> ImmutableIntObjectMap<V>ImmutableIntObjectMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<T> ImmutableIntShortMapImmutableIntShortMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableLongIntMapImmutableLongIntMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T, K> ImmutableObjectIntMap<K>ImmutableObjectIntMapFactoryImpl. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableShortIntMapImmutableShortIntMapFactoryImpl. from(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) -
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 MutableIntBagAbstractMutableMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagSynchronizedMutableMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagUnmodifiableMutableMap. 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)longUnmodifiableMutableMap. 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 MutableIntBagByteObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RByteObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagCharObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RCharObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagIntObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RIntObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagLongObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RLongObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RShortObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedByteObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedByteObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedCharObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedCharObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedDoubleObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedDoubleObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedFloatObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedFloatObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedIntObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedIntObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedLongObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedLongObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagSynchronizedShortObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RSynchronizedShortObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableByteObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableByteObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableCharObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableCharObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableDoubleObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableDoubleObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableFloatObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableFloatObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableIntObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableIntObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableLongObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableLongObjectMap. collectInt(IntFunction<? super V> intFunction, R target)MutableIntBagUnmodifiableShortObjectMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RUnmodifiableShortObjectMap. collectInt(IntFunction<? super V> intFunction, R target)<T> MutableByteIntMapMutableByteIntMapFactoryImpl. from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableCharIntMapMutableCharIntMapFactoryImpl. from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableFloatIntMapMutableFloatIntMapFactoryImpl. from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableIntBooleanMapMutableIntBooleanMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableIntByteMapMutableIntByteMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableIntCharMapMutableIntCharMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableIntDoubleMapMutableIntDoubleMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableIntFloatMapMutableIntFloatMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableIntIntMapMutableIntIntMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableIntLongMapMutableIntLongMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)<T, V> MutableIntObjectMap<V>MutableIntObjectMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)<T> MutableIntShortMapMutableIntShortMapFactoryImpl. from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableLongIntMapMutableLongIntMapFactoryImpl. from(Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T, K> MutableObjectIntMap<K>MutableObjectIntMapFactoryImpl. from(Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)<T> MutableShortIntMapMutableShortIntMapFactoryImpl. from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<P> intByteIntHashMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)<P> intCharIntHashMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)<P> intDoubleIntHashMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)<P> intFloatIntHashMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)<P> intIntIntHashMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)<P> intLongIntHashMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)<P> intObjectIntHashMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)<P> intObjectIntHashMapWithHashingStrategy. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)<P> intShortIntHashMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)<P> intSynchronizedByteIntMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)<P> intSynchronizedCharIntMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)<P> intSynchronizedDoubleIntMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)<P> intSynchronizedFloatIntMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)<P> intSynchronizedIntIntMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)<P> intSynchronizedLongIntMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)<P> intSynchronizedObjectIntMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)<P> intSynchronizedShortIntMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableByteIntMap. getIfAbsentPutWith(byte key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableCharIntMap. getIfAbsentPutWith(char key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableDoubleIntMap. getIfAbsentPutWith(double key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableFloatIntMap. getIfAbsentPutWith(float key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableIntIntMap. getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableLongIntMap. getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableObjectIntMap. getIfAbsentPutWith(K key, IntFunction<? super P> function, P parameter)<P> intUnmodifiableShortIntMap. getIfAbsentPutWith(short key, IntFunction<? super P> function, P parameter)intObjectIntHashMap. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)intObjectIntHashMapWithHashingStrategy. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)intSynchronizedObjectIntMap. getIfAbsentPutWithKey(K key, IntFunction<? super K> function)intUnmodifiableObjectIntMap. 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)longByteObjectHashMap. sumOfInt(IntFunction<? super V> function)longCharObjectHashMap. sumOfInt(IntFunction<? super V> function)longDoubleObjectHashMap. sumOfInt(IntFunction<? super V> function)longFloatObjectHashMap. sumOfInt(IntFunction<? super V> function)longIntObjectHashMap. sumOfInt(IntFunction<? super V> function)longLongObjectHashMap. sumOfInt(IntFunction<? super V> function)longShortObjectHashMap. sumOfInt(IntFunction<? super V> function)longSynchronizedByteObjectMap. sumOfInt(IntFunction<? super V> function)longSynchronizedCharObjectMap. sumOfInt(IntFunction<? super V> function)longSynchronizedDoubleObjectMap. sumOfInt(IntFunction<? super V> function)longSynchronizedFloatObjectMap. sumOfInt(IntFunction<? super V> function)longSynchronizedIntObjectMap. sumOfInt(IntFunction<? super V> function)longSynchronizedLongObjectMap. sumOfInt(IntFunction<? super V> function)longSynchronizedShortObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableByteObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableCharObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableDoubleObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableFloatObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableIntObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableLongObjectMap. sumOfInt(IntFunction<? super V> function)longUnmodifiableShortObjectMap. 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 MutableIntListOrderedMapAdapter. collectInt(IntFunction<? super V> intFunction)MutableIntListUnmodifiableMutableOrderedMap. 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)IntSummaryStatisticsUnmodifiableMutableOrderedMap. summarizeInt(IntFunction<? super V> function)longUnmodifiableMutableOrderedMap. 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 ImmutableIntListAbstractImmutableSortedMap. 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 MutableIntListAbstractMutableSortedMap. collectInt(IntFunction<? super V> intFunction)MutableIntListSynchronizedSortedMap. collectInt(IntFunction<? super V> intFunction)MutableIntListUnmodifiableTreeMap. 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)longUnmodifiableTreeMap. sumOfInt(IntFunction<? super V> function) -
Uses of IntFunction in org.eclipse.collections.impl.parallel
Methods in org.eclipse.collections.impl.parallel with parameters of type IntFunction Modifier and Type Method Description static <T, V> ObjectLongMap<V>ParallelIterate. sumByInt(Iterable<T> iterable, Function<? super T,? extends V> groupBy, IntFunction<? super T> function) -
Uses of IntFunction in org.eclipse.collections.impl.set
Methods in org.eclipse.collections.impl.set with parameters of type IntFunction Modifier and Type Method Description MutableIntSetAbstractUnifiedSet. collectInt(IntFunction<? super T> intFunction) -
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 ImmutableIntSetAbstractImmutableSet. 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 MutableIntSetAbstractMutableSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetMultiReaderUnifiedSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetSetAdapter. collectInt(IntFunction<? super T> intFunction)MutableIntSetSynchronizedMutableSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetUnmodifiableMutableSet. 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 MutableIntListSortedSetAdapter. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedSortedSet. collectInt(IntFunction<? super T> intFunction)MutableIntListTreeSortedSet. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableSortedSet. collectInt(IntFunction<? super T> intFunction) -
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 MutableIntStackArrayStack. collectInt(IntFunction<? super T> intFunction)<R extends MutableIntCollection>
RArrayStack. collectInt(IntFunction<? super T> intFunction, R target)MutableIntStackSynchronizedStack. collectInt(IntFunction<? super T> intFunction)<R extends MutableIntCollection>
RSynchronizedStack. collectInt(IntFunction<? super T> intFunction, R target)MutableIntStackUnmodifiableStack. 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)longArrayStack. sumOfInt(IntFunction<? super T> intFunction)longSynchronizedStack. sumOfInt(IntFunction<? super T> intFunction)longUnmodifiableStack. 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> MutableIntListArrayIterate. collectInt(T[] objectArray, IntFunction<? super T> intFunction)static <T, R extends MutableIntCollection>
RArrayIterate. collectInt(T[] objectArray, IntFunction<? super T> intFunction, R target)static <T> MutableIntListArrayListIterate. collectInt(ArrayList<T> list, IntFunction<? super T> intFunction)static <T, R extends MutableIntCollection>
RArrayListIterate. collectInt(ArrayList<T> list, IntFunction<? super T> intFunction, R target)static <T> MutableIntCollectionIterate. collectInt(Iterable<T> iterable, IntFunction<? super T> intFunction)Returns a newintcollection with the results of applying the specified intFunction for each element of the iterable.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 specifiedtargetcollection.static <T> MutableIntListListIterate. collectInt(List<T> list, IntFunction<? super T> intFunction)static <T, R extends MutableIntCollection>
RListIterate. collectInt(List<T> list, IntFunction<? super T> intFunction, R target)static <K, V> MutableIntCollectionMapIterate. collectInt(Map<K,V> map, IntFunction<? super V> intFunction)static <K, V, R extends MutableIntCollection>
RMapIterate. collectInt(Map<K,V> map, IntFunction<? super V> intFunction, 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(Iterable<T> iterable, Function<T,V> groupBy, IntFunction<? super T> function)static <V, T> ObjectLongMap<V>ListIterate. sumByInt(List<T> list, Function<T,V> groupBy, IntFunction<? super T> function)static <T> longArrayIterate. sumOfInt(T[] array, IntFunction<? super T> function)static <T> longIterate. sumOfInt(Iterable<T> iterable, IntFunction<? super T> function)static <T> longListIterate. sumOfInt(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> MutableIntCollectionIterableIterate. collectInt(Iterable<T> iterable, IntFunction<? super T> intFunction)static <T, R extends MutableIntCollection>
RIterableIterate. collectInt(Iterable<T> iterable, IntFunction<? super T> intFunction, R target)static <T> MutableIntCollectionIteratorIterate. collectInt(Iterator<T> iterator, IntFunction<? super T> intFunction)static <T, R extends MutableIntCollection>
RIteratorIterate. collectInt(Iterator<T> iterator, IntFunction<? super T> intFunction, R target)static <T> MutableIntListRandomAccessListIterate. collectInt(List<T> list, IntFunction<? super T> intFunction)static <T, R extends MutableIntCollection>
RRandomAccessListIterate. collectInt(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(Iterable<T> iterable, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)static <V, T> ObjectLongMap<V>RandomAccessListIterate. sumByInt(List<T> list, Function<? super T,? extends V> groupBy, IntFunction<? super T> function)static <T> IntSummaryStatisticsInternalArrayIterate. summarizeInt(T[] items, int size, IntFunction<? super T> function)static <T> longInternalArrayIterate. sumOfInt(T[] array, int size, IntFunction<? super T> function)static <T> longIterableIterate. sumOfInt(Iterable<T> iterable, IntFunction<? super T> function)static <T> longIteratorIterate. sumOfInt(Iterator<T> iterator, IntFunction<? super T> function)static <T> longRandomAccessListIterate. sumOfInt(List<T> list, IntFunction<? super T> function)