Uses of Interface
org.eclipse.collections.api.block.function.primitive.IntToIntFunction
| Package | Description |
|---|---|
| org.eclipse.collections.api |
This package contains interfaces for Eclipse Collections API.
|
| org.eclipse.collections.api.map.primitive |
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
|
| org.eclipse.collections.impl.block.factory.primitive |
This package contains factory implementations for primitive functions, primitive predicates, primitive procedures and primitive comparators.
|
| org.eclipse.collections.impl.lazy.primitive |
This package contains implementations of the lazy primitive iterator interfaces.
|
| 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.string.immutable |
-
Uses of IntToIntFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type IntToIntFunction Modifier and Type Method Description default <R extends MutableIntCollection>
RIntIterable. collectInt(IntToIntFunction function, R target)Returns the targetMutableIntCollectionwith the results of applying the specified function on each element of the source collection.LazyIntIterableLazyIntIterable. collectInt(IntToIntFunction function) -
Uses of IntToIntFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type IntToIntFunction Modifier and Type Method Description intMutableIntIntMap. getIfAbsentPutWithKey(int key, IntToIntFunction 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.intMutableByteIntMap. updateValue(byte key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableCharIntMap. updateValue(char key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableDoubleIntMap. updateValue(double key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableFloatIntMap. updateValue(float key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableIntIntMap. updateValue(int key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableLongIntMap. updateValue(long key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableObjectIntMap. updateValue(K key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not.intMutableShortIntMap. updateValue(short key, int initialValueIfAbsent, IntToIntFunction function)Updates or sets the value associated with the key by applying the function to the existing value, if one exists, or to the specified initial value if one does not. -
Uses of IntToIntFunction in org.eclipse.collections.impl.block.factory.primitive
Methods in org.eclipse.collections.impl.block.factory.primitive that return IntToIntFunction Modifier and Type Method Description static IntToIntFunctionIntToIntFunctions. add(int intToAdd)static IntToIntFunctionIntToIntFunctions. decrement()static IntToIntFunctionIntToIntFunctions. increment()static IntToIntFunctionIntToIntFunctions. subtract(int intToSubtract) -
Uses of IntToIntFunction in org.eclipse.collections.impl.lazy.primitive
Methods in org.eclipse.collections.impl.lazy.primitive with parameters of type IntToIntFunction Modifier and Type Method Description LazyIntIterableAbstractLazyIntIterable. collectInt(IntToIntFunction function)Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type IntToIntFunction Constructor Description CollectIntToIntIterable(IntIterable iterable, IntToIntFunction function) -
Uses of IntToIntFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type IntToIntFunction Modifier and Type Method Description intIntIntHashMap. getIfAbsentPutWithKey(int key, IntToIntFunction function)intSynchronizedIntIntMap. getIfAbsentPutWithKey(int key, IntToIntFunction function)intUnmodifiableIntIntMap. getIfAbsentPutWithKey(int key, IntToIntFunction function)intByteIntHashMap. updateValue(byte key, int initialValueIfAbsent, IntToIntFunction function)intCharIntHashMap. updateValue(char key, int initialValueIfAbsent, IntToIntFunction function)intDoubleIntHashMap. updateValue(double key, int initialValueIfAbsent, IntToIntFunction function)intFloatIntHashMap. updateValue(float key, int initialValueIfAbsent, IntToIntFunction function)intIntIntHashMap. updateValue(int key, int initialValueIfAbsent, IntToIntFunction function)intLongIntHashMap. updateValue(long key, int initialValueIfAbsent, IntToIntFunction function)intObjectIntHashMap. updateValue(K key, int initialValueIfAbsent, IntToIntFunction function)intObjectIntHashMapWithHashingStrategy. updateValue(K key, int initialValueIfAbsent, IntToIntFunction function)intShortIntHashMap. updateValue(short key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedByteIntMap. updateValue(byte key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedCharIntMap. updateValue(char key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedDoubleIntMap. updateValue(double key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedFloatIntMap. updateValue(float key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedIntIntMap. updateValue(int key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedLongIntMap. updateValue(long key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedObjectIntMap. updateValue(K key, int initialValueIfAbsent, IntToIntFunction function)intSynchronizedShortIntMap. updateValue(short key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableByteIntMap. updateValue(byte key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableCharIntMap. updateValue(char key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableDoubleIntMap. updateValue(double key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableFloatIntMap. updateValue(float key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableIntIntMap. updateValue(int key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableLongIntMap. updateValue(long key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableObjectIntMap. updateValue(K key, int initialValueIfAbsent, IntToIntFunction function)intUnmodifiableShortIntMap. updateValue(short key, int initialValueIfAbsent, IntToIntFunction function) -
Uses of IntToIntFunction in org.eclipse.collections.impl.string.immutable
Methods in org.eclipse.collections.impl.string.immutable with parameters of type IntToIntFunction Modifier and Type Method Description CodePointAdapterCodePointAdapter. collectInt(IntToIntFunction function)CodePointListCodePointList. collectInt(IntToIntFunction function)