Uses of Interface
org.eclipse.collections.api.block.function.primitive.IntFunction
Packages that use IntFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for list API which enhance the performance and functionality of
List.This package contains interfaces for map API which enhance the performance and functionality of
MapThis package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains mutable and immutable sorted map interfaces.
This package contains interfaces for set API which enhance the performance and functionality of
Set.This package contains interfaces for sorted set API.
This package contains interfaces for stack API.
-
Uses of IntFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntFunctionModifier and TypeMethodDescriptionLazyIterable.collectInt(IntFunction<? super T> intFunction) Returns a lazy IntIterable which will transform the underlying iterable data to int values based on the intFunction.RichIterable.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 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 IntFunctionModifier and TypeMethodDescriptionImmutableBag.collectInt(IntFunction<? super T> intFunction) default MutableIntBagMutableBag.collectInt(IntFunction<? super T> intFunction) UnsortedBag.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 IntFunctionModifier and TypeMethodDescriptionImmutableSortedBag.collectInt(IntFunction<? super T> intFunction) MutableSortedBag.collectInt(IntFunction<? super T> intFunction) SortedBag.collectInt(IntFunction<? super T> intFunction) -
Uses of IntFunction in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection with parameters of type IntFunctionModifier and TypeMethodDescriptionImmutableCollection.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 IntFunctionModifier and TypeMethodDescriptionImmutableByteIntMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableCharIntMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableDoubleIntMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableFloatIntMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntBooleanMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anImmutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntByteMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anImmutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntCharMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anImmutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntDoubleMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anImmutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntFloatMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, FloatFunction<? super T> valueFunction) Creates anImmutableIntFloatMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntIntMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableIntIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableIntLongMapFactory.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.ImmutableIntShortMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anImmutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.ImmutableLongIntMapFactory.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.ImmutableShortIntMapFactory.from(Iterable<T> iterable, ShortFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anImmutableShortIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableByteIntMapFactory.from(Iterable<T> iterable, ByteFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableByteIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableCharIntMapFactory.from(Iterable<T> iterable, CharFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableCharIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableDoubleIntMapFactory.from(Iterable<T> iterable, DoubleFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableDoubleIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableFloatIntMapFactory.from(Iterable<T> iterable, FloatFunction<? super T> keyFunction, IntFunction<? super T> valueFunction) Creates anMutableFloatIntMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntBooleanMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, BooleanFunction<? super T> valueFunction) Creates anMutableIntBooleanMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntByteMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ByteFunction<? super T> valueFunction) Creates anMutableIntByteMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntCharMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, CharFunction<? super T> valueFunction) Creates anMutableIntCharMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntDoubleMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, DoubleFunction<? super T> valueFunction) Creates anMutableIntDoubleMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableIntFloatMapFactory.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.MutableIntLongMapFactory.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.MutableIntShortMapFactory.from(Iterable<T> iterable, IntFunction<? super T> keyFunction, ShortFunction<? super T> valueFunction) Creates anMutableIntShortMapfrom anIterable<T>by applyingkeyFunctionandvalueFunction.MutableLongIntMapFactory.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.MutableShortIntMapFactory.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 IntFunctionModifier and TypeMethodDescriptionImmutableList.collectInt(IntFunction<? super T> intFunction) ListIterable.collectInt(IntFunction<? super T> intFunction) default MutableIntListMutableList.collectInt(IntFunction<? super T> intFunction) MultiReaderList.sortThisByInt(IntFunction<? super T> function) 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 IntFunctionModifier and TypeMethodDescriptionImmutableMap.collectInt(IntFunction<? super V> intFunction) ImmutableOrderedMap.collectInt(IntFunction<? super V> intFunction) MutableMap.collectInt(IntFunction<? super V> intFunction) MutableOrderedMap.collectInt(IntFunction<? super V> intFunction) OrderedMap.collectInt(IntFunction<? super V> intFunction) UnsortedMapIterable.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 IntFunctionModifier and TypeMethodDescriptionImmutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) MutablePrimitiveObjectMap.collectInt(IntFunction<? super V> intFunction) PrimitiveObjectMap.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 IntFunctionModifier and TypeMethodDescriptionImmutableSortedMap.collectInt(IntFunction<? super V> intFunction) MutableSortedMap.collectInt(IntFunction<? super V> intFunction) SortedMapIterable.collectInt(IntFunction<? super V> intFunction) -
Uses of IntFunction in org.eclipse.collections.api.ordered
Methods in org.eclipse.collections.api.ordered with parameters of type IntFunctionModifier and TypeMethodDescriptionOrderedIterable.collectInt(IntFunction<? super T> intFunction) ReversibleIterable.collectInt(IntFunction<? super T> intFunction) -
Uses of IntFunction in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set with parameters of type IntFunctionModifier and TypeMethodDescriptionImmutableSet.collectInt(IntFunction<? super T> intFunction) default MutableIntSetMutableSet.collectInt(IntFunction<? super T> intFunction) UnsortedSetIterable.collectInt(IntFunction<? super T> intFunction) -
Uses of IntFunction in org.eclipse.collections.api.set.sorted
Methods in org.eclipse.collections.api.set.sorted with parameters of type IntFunctionModifier and TypeMethodDescriptionImmutableSortedSet.collectInt(IntFunction<? super T> intFunction) MutableSortedSet.collectInt(IntFunction<? super T> intFunction) SortedSetIterable.collectInt(IntFunction<? super T> intFunction) -
Uses of IntFunction in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack with parameters of type IntFunctionModifier and TypeMethodDescriptionImmutableStack.collectInt(IntFunction<? super T> intFunction) MutableStack.collectInt(IntFunction<? super T> intFunction) StackIterable.collectInt(IntFunction<? super T> intFunction) <V> ImmutableObjectLongMap<V>ImmutableStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function) <V> MutableObjectLongMap<V>MutableStack.sumByInt(Function<? super T, ? extends V> groupBy, IntFunction<? super T> function)