Uses of Interface
org.eclipse.collections.api.block.function.primitive.LongFunction0

Packages that use LongFunction0
Package
Description
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
  • Uses of LongFunction0 in org.eclipse.collections.api.map.primitive

    Methods in org.eclipse.collections.api.map.primitive with parameters of type LongFunction0
    Modifier and Type
    Method
    Description
    long
    MutableByteLongMap.getIfAbsentPut(byte key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableCharLongMap.getIfAbsentPut(char key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableDoubleLongMap.getIfAbsentPut(double key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableFloatLongMap.getIfAbsentPut(float key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableIntLongMap.getIfAbsentPut(int key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableLongLongMap.getIfAbsentPut(long key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableObjectLongMap.getIfAbsentPut(K key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.
    long
    MutableShortLongMap.getIfAbsentPut(short key, LongFunction0 function)
    Retrieves the value associated with the key if one exists; if it does not, invokes the supplier and associates the result with the key.