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 ofMaporg.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 theImmutableBaginterface.org.eclipse.collections.impl.bag.mutable This package contains implementations of theMutableBaginterface.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 theMutableBiMapinterface.org.eclipse.collections.impl.block.comparator.primitive This package contains implementations of theSerializableComparatorinterface to compare primitive double, int and long.org.eclipse.collections.impl.block.factory This package contains factory implementations forFunction,Predicate,SerializableComparatorandProcedure.org.eclipse.collections.impl.block.function.primitive This package contains implementations of primitive functions.org.eclipse.collections.impl.block.procedure This package contains implementations ofProcedureandProcedure2.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 theImmutableCollectioninterface.org.eclipse.collections.impl.collection.mutable This package contains implementations of theMutableCollectioninterface.org.eclipse.collections.impl.collector org.eclipse.collections.impl.lazy This package contains implementations of theLazyIterableinterface.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 theFixedSizeListinterface.org.eclipse.collections.impl.list.immutable This package contains implementations of theImmutableListinterface.org.eclipse.collections.impl.list.mutable This package contains implementations of theMutableListinterface.org.eclipse.collections.impl.map This package contains implementations of theMapIterableinterface.org.eclipse.collections.impl.map.immutable This package contains implementations of theImmutableMapinterface.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 theMutableMapinterface.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.immutable org.eclipse.collections.impl.map.ordered.mutable org.eclipse.collections.impl.map.sorted.immutable This package contains implementations of theMutableSortedMapinterface.org.eclipse.collections.impl.map.sorted.mutable This package contains implementations of theMutableSortedMapinterface.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 theImmutableStackinterface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStackinterface.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.default <R extends MutableIntCollection>
RRichIterable. collectInt(IntFunction<? super T> intFunction, R target)Same asRichIterable.collectInt(IntFunction), except that the results are gathered into the specifiedtargetcollection.<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.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)default MutableIntBagMutableBag. collectInt(IntFunction<? super T> intFunction)IntBagUnsortedBag. collectInt(IntFunction<? super T> intFunction)default java.util.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)default 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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableCharIntMapImmutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableFloatIntMapImmutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntByteMapImmutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntCharMapImmutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntFloatMapImmutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anImmutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntIntMapImmutableIntIntMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntLongMapImmutableIntLongMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anImmutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
ImmutableIntObjectMap<V>ImmutableIntObjectMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anImmutableIntObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableIntShortMapImmutableIntShortMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anImmutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableLongIntMapImmutableLongIntMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
ImmutableObjectIntMap<K>ImmutableObjectIntMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> ImmutableShortIntMapImmutableShortIntMapFactory. from(java.lang.Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableByteIntMapMutableByteIntMapFactory. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableCharIntMapMutableCharIntMapFactory. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableDoubleIntMapMutableDoubleIntMapFactory. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableFloatIntMapMutableFloatIntMapFactory. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntBooleanMapMutableIntBooleanMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntByteMapMutableIntByteMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntCharMapMutableIntCharMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntDoubleMapMutableIntDoubleMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntFloatMapMutableIntFloatMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)Creates anMutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntIntMapMutableIntIntMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntLongMapMutableIntLongMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, LongFunction<? super T> valueFunction)Creates anMutableIntLongMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,V>
MutableIntObjectMap<V>MutableIntObjectMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, Function<? super T,? extends V> valueFunction)Creates anMutableIntObjectMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableIntShortMapMutableIntShortMapFactory. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableLongIntMapMutableLongIntMapFactory. from(java.lang.Iterable<T> iterable, LongFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableLongIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T,K>
MutableObjectIntMap<K>MutableObjectIntMapFactory. from(java.lang.Iterable<T> iterable, Function<? super T,? extends K> keyFunction, IntFunction<? super T> valueFunction)Creates anMutableObjectIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.<T> MutableShortIntMapMutableShortIntMapFactory. from(java.lang.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)default MutableIntListMutableList. 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 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)<VV> ImmutableObjectLongMap<VV>ImmutableOrderedMap. sumByInt(Function<? super V,? extends VV> groupBy, IntFunction<? super V> function)<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)default 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 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)protected MutableList<ObjectIntPair<T>>AbstractBag. occurrencesSortingBy(int n, IntFunction<ObjectIntPair<T>> function, MutableList<ObjectIntPair<T>> returnWhenEmpty)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)ImmutableIntBagImmutableEmptyBag. 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 MutableIntBagMultiReaderHashBag. collectInt(IntFunction<? super T> intFunction)MutableIntBagMultiReaderHashBag.UntouchableMutableBag. 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)<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 ImmutableIntListAbstractImmutableSortedBag. 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 MutableIntListAbstractMutableSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListSynchronizedSortedBag. collectInt(IntFunction<? super T> intFunction)MutableIntListUnmodifiableSortedBag. 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)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 MutableIntBagAbstractMutableBiMap. collectInt(IntFunction<? super V> intFunction)IntIterableUnmodifiableBiMap. 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)longUnmodifiableBiMap. 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. functionConstructors 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 classFunctions.IntegerPassThruFunctionstatic classFunctions.IntFunctionChain<T1,T2>static classFunctions.SizeFunctionprivate static classPrimitiveFunctions.UnboxIntegerToIntprivate static classPrimitiveFunctions.UnboxNumberToIntprivate static classStringFunctions.LengthFunctionprivate static classStringFunctions.ToPrimitiveIntFunctionFields in org.eclipse.collections.impl.block.factory declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>HashingStrategies.IntFunctionHashingStrategy. functionprivate IntFunction<? super T2>Functions.IntFunctionChain. function2private static IntFunction<java.lang.String>StringFunctions. TO_PRIMITIVE_INTMethods 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 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
Fields in org.eclipse.collections.impl.block.procedure declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>SumOfIntProcedure. functionConstructors 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. intFunctionConstructors 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 <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)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>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)longAbstractCollectionAdapter. sumOfInt(IntFunction<? super T> function)longAbstractMultiReaderMutableCollection. sumOfInt(IntFunction<? super T> function)longAbstractMultiReaderMutableCollection.UntouchableMutableCollection. 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>
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 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
Fields in org.eclipse.collections.impl.lazy.primitive declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>CollectIntIterable. functionprivate IntFunction<? super T>CollectIntIterable.IntFunctionToProcedure. functionConstructors 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 ImmutableIntListAbstractImmutableList. collectInt(IntFunction<? super T> intFunction)java.util.IntSummaryStatisticsImmutableArrayList. summarizeInt(IntFunction<? super T> function)longAbstractImmutableList. sumOfInt(IntFunction<? super T> function)longImmutableArrayList. 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)MutableIntListMultiReaderFastList. collectInt(IntFunction<? super T> intFunction)MutableIntListMultiReaderFastList.UntouchableMutableList. 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)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.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 ImmutableIntBagImmutableByteObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableByteObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableByteObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableByteObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableByteObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableByteObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableCharObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableCharObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableCharObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableCharObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableCharObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableCharObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableDoubleObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableDoubleObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableDoubleObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableDoubleObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableFloatObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableFloatObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableFloatObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableFloatObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableIntObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableIntObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableIntObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableIntObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableIntObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableIntObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableLongObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableLongObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableLongObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableLongObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableLongObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableLongObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableShortObjectEmptyMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableShortObjectEmptyMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableShortObjectHashMap. collectInt(IntFunction<? super V> intFunction, R target)ImmutableIntBagImmutableShortObjectSingletonMap. collectInt(IntFunction<? super V> intFunction)<R extends MutableIntCollection>
RImmutableShortObjectSingletonMap. collectInt(IntFunction<? super V> intFunction, R target)<T> ImmutableByteIntMapImmutableByteIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableCharIntMapImmutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableDoubleIntMapImmutableDoubleIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableFloatIntMapImmutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableIntBooleanMapImmutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> ImmutableIntByteMapImmutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> ImmutableIntCharMapImmutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> ImmutableIntDoubleMapImmutableIntDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> ImmutableIntFloatMapImmutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> ImmutableIntIntMapImmutableIntIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> ImmutableIntLongMapImmutableIntLongMapFactoryImpl. 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> ImmutableIntShortMapImmutableIntShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> ImmutableLongIntMapImmutableLongIntMapFactoryImpl. 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> ImmutableShortIntMapImmutableShortIntMapFactoryImpl. 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)longImmutableByteObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableByteObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableByteObjectSingletonMap. sumOfInt(IntFunction<? super V> function)longImmutableCharObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableCharObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableCharObjectSingletonMap. sumOfInt(IntFunction<? super V> function)longImmutableDoubleObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableDoubleObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableDoubleObjectSingletonMap. sumOfInt(IntFunction<? super V> function)longImmutableFloatObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableFloatObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableFloatObjectSingletonMap. sumOfInt(IntFunction<? super V> function)longImmutableIntObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableIntObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableIntObjectSingletonMap. sumOfInt(IntFunction<? super V> function)longImmutableLongObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableLongObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableLongObjectSingletonMap. sumOfInt(IntFunction<? super V> function)longImmutableShortObjectEmptyMap. sumOfInt(IntFunction<? super V> function)longImmutableShortObjectHashMap. sumOfInt(IntFunction<? super V> function)longImmutableShortObjectSingletonMap. 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 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)MutableIntBagCharObjectHashMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagDoubleObjectHashMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagFloatObjectHashMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagIntObjectHashMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagLongObjectHashMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagShortObjectHashMap. collectInt(IntFunction<? super V> intFunction)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(java.lang.Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableCharIntMapMutableCharIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableDoubleIntMapMutableDoubleIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableFloatIntMapMutableFloatIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableIntBooleanMapMutableIntBooleanMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction)<T> MutableIntByteMapMutableIntByteMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction)<T> MutableIntCharMapMutableIntCharMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction)<T> MutableIntDoubleMapMutableIntDoubleMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction)<T> MutableIntFloatMapMutableIntFloatMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction)<T> MutableIntIntMapMutableIntIntMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction)<T> MutableIntLongMapMutableIntLongMapFactoryImpl. 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> MutableIntShortMapMutableIntShortMapFactoryImpl. from(java.lang.Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction)<T> MutableLongIntMapMutableLongIntMapFactoryImpl. 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> MutableShortIntMapMutableShortIntMapFactoryImpl. from(java.lang.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.immutable
Methods in org.eclipse.collections.impl.map.ordered.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntListImmutableOrderedMapAdapter. collectInt(IntFunction<? super V> intFunction)<VV> ImmutableObjectLongMap<VV>ImmutableOrderedMapAdapter. sumByInt(Function<? super V,? extends VV> groupBy, 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)java.util.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
Fields in org.eclipse.collections.impl.parallel declared as IntFunction Modifier and Type Field Description private IntFunction<? super T>ParallelIterate.SumByIntProcedure. functionMethods 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 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 MutableIntSetMultiReaderUnifiedSet. collectInt(IntFunction<? super T> intFunction)MutableIntSetMultiReaderUnifiedSet.UntouchableMutableSet. 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.immutable
Methods in org.eclipse.collections.impl.set.sorted.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntListAbstractImmutableSortedSet. 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.immutable
Methods in org.eclipse.collections.impl.stack.immutable with parameters of type IntFunction Modifier and Type Method Description ImmutableIntStackImmutableArrayStack. collectInt(IntFunction<? super T> intFunction)Deprecated.<R extends MutableIntCollection>
RImmutableArrayStack. collectInt(IntFunction<? super T> intFunction, R target)Deprecated.ImmutableIntStackImmutableEmptyStack. collectInt(IntFunction<? super T> intFunction)<R extends MutableIntCollection>
RImmutableEmptyStack. collectInt(IntFunction<? super T> intFunction, R target)ImmutableIntStackImmutableNotEmptyStack. 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)longImmutableArrayStack. 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 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(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> MutableIntCollectionIterate. collectInt(java.lang.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(java.lang.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(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> longArrayIterate. sumOfInt(T[] array, IntFunction<? super T> function)static <T> longIterate. sumOfInt(java.lang.Iterable<T> iterable, IntFunction<? super T> function)static <T> longListIterate. 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 <R extends MutableIntCollection,T>
RInternalArrayIterate. collectInt(T[] items, int size, IntFunction<? super T> intFunction, R target)Adds all array elements to the target MutableIntCollection after using the function supplied to convert each source element to the appropriate typestatic <T> MutableIntCollectionIterableIterate. 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> MutableIntCollectionIteratorIterate. 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> MutableIntListRandomAccessListIterate. 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.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(java.lang.Iterable<T> iterable, IntFunction<? super T> function)static <T> longIteratorIterate. sumOfInt(java.util.Iterator<T> iterator, IntFunction<? super T> function)static <T> longRandomAccessListIterate. sumOfInt(java.util.List<T> list, IntFunction<? super T> function)
-