Uses of Interface
org.eclipse.collections.api.block.function.primitive.LongToLongFunction
Packages that use LongToLongFunction
Package
Description
This package contains interfaces for Eclipse Collections API.
This 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 implementations of the lazy primitive iterator interfaces.
This package contains implementations of the mutable primitive-primitive, primitive-object and object-primitive map interfaces.
-
Uses of LongToLongFunction in org.eclipse.collections.api
Methods in org.eclipse.collections.api with parameters of type LongToLongFunctionModifier and TypeMethodDescriptionLazyLongIterable.collectLong(LongToLongFunction function) default <R extends MutableLongCollection>
RLongIterable.collectLong(LongToLongFunction function, R target) Returns the targetMutableLongCollectionwith the results of applying the specified function on each element of the source collection. -
Uses of LongToLongFunction in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive with parameters of type LongToLongFunctionModifier and TypeMethodDescriptionlongMutableLongLongMap.getIfAbsentPutWithKey(long key, LongToLongFunction 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.longMutableByteLongMap.updateValue(byte key, long initialValueIfAbsent, LongToLongFunction 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.longMutableCharLongMap.updateValue(char key, long initialValueIfAbsent, LongToLongFunction 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.longMutableDoubleLongMap.updateValue(double key, long initialValueIfAbsent, LongToLongFunction 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.longMutableFloatLongMap.updateValue(float key, long initialValueIfAbsent, LongToLongFunction 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.longMutableIntLongMap.updateValue(int key, long initialValueIfAbsent, LongToLongFunction 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.longMutableLongLongMap.updateValue(long key, long initialValueIfAbsent, LongToLongFunction 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.longMutableObjectLongMap.updateValue(K key, long initialValueIfAbsent, LongToLongFunction 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.longMutableShortLongMap.updateValue(short key, long initialValueIfAbsent, LongToLongFunction 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 LongToLongFunction in org.eclipse.collections.impl.lazy.primitive
Fields in org.eclipse.collections.impl.lazy.primitive declared as LongToLongFunctionModifier and TypeFieldDescriptionprivate final LongToLongFunctionCollectLongToLongIterable.functionMethods in org.eclipse.collections.impl.lazy.primitive with parameters of type LongToLongFunctionModifier and TypeMethodDescriptionAbstractLazyLongIterable.collectLong(LongToLongFunction function) Constructors in org.eclipse.collections.impl.lazy.primitive with parameters of type LongToLongFunctionModifierConstructorDescriptionCollectLongToLongIterable(LongIterable iterable, LongToLongFunction function) -
Uses of LongToLongFunction in org.eclipse.collections.impl.map.mutable.primitive
Methods in org.eclipse.collections.impl.map.mutable.primitive with parameters of type LongToLongFunctionModifier and TypeMethodDescriptionlongLongLongHashMap.getIfAbsentPutWithKey(long key, LongToLongFunction function) longSynchronizedLongLongMap.getIfAbsentPutWithKey(long key, LongToLongFunction function) longUnmodifiableLongLongMap.getIfAbsentPutWithKey(long key, LongToLongFunction function) longByteLongHashMap.updateValue(byte key, long initialValueIfAbsent, LongToLongFunction function) longCharLongHashMap.updateValue(char key, long initialValueIfAbsent, LongToLongFunction function) longDoubleLongHashMap.updateValue(double key, long initialValueIfAbsent, LongToLongFunction function) longFloatLongHashMap.updateValue(float key, long initialValueIfAbsent, LongToLongFunction function) longIntLongHashMap.updateValue(int key, long initialValueIfAbsent, LongToLongFunction function) longLongLongHashMap.updateValue(long key, long initialValueIfAbsent, LongToLongFunction function) longObjectLongHashMap.updateValue(K key, long initialValueIfAbsent, LongToLongFunction function) longObjectLongHashMapWithHashingStrategy.updateValue(K key, long initialValueIfAbsent, LongToLongFunction function) longShortLongHashMap.updateValue(short key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedByteLongMap.updateValue(byte key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedCharLongMap.updateValue(char key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedDoubleLongMap.updateValue(double key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedFloatLongMap.updateValue(float key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedIntLongMap.updateValue(int key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedLongLongMap.updateValue(long key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedObjectLongMap.updateValue(K key, long initialValueIfAbsent, LongToLongFunction function) longSynchronizedShortLongMap.updateValue(short key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableByteLongMap.updateValue(byte key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableCharLongMap.updateValue(char key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableDoubleLongMap.updateValue(double key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableFloatLongMap.updateValue(float key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableIntLongMap.updateValue(int key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableLongLongMap.updateValue(long key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableObjectLongMap.updateValue(K key, long initialValueIfAbsent, LongToLongFunction function) longUnmodifiableShortLongMap.updateValue(short key, long initialValueIfAbsent, LongToLongFunction function)