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

Packages that use ByteFunction0
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 ByteFunction0 in org.eclipse.collections.api.map.primitive

    Methods in org.eclipse.collections.api.map.primitive with parameters of type ByteFunction0
    Modifier and Type
    Method
    Description
    byte
    MutableByteByteMap.getIfAbsentPut(byte key, ByteFunction0 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.
    byte
    MutableCharByteMap.getIfAbsentPut(char key, ByteFunction0 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.
    byte
    MutableDoubleByteMap.getIfAbsentPut(double key, ByteFunction0 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.
    byte
    MutableFloatByteMap.getIfAbsentPut(float key, ByteFunction0 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.
    byte
    MutableIntByteMap.getIfAbsentPut(int key, ByteFunction0 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.
    byte
    MutableLongByteMap.getIfAbsentPut(long key, ByteFunction0 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.
    byte
    MutableObjectByteMap.getIfAbsentPut(K key, ByteFunction0 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.
    byte
    MutableShortByteMap.getIfAbsentPut(short key, ByteFunction0 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.