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

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

    Methods in org.eclipse.collections.api.map.primitive with parameters of type CharFunction0
    Modifier and Type
    Method
    Description
    char
    MutableByteCharMap.getIfAbsentPut(byte key, CharFunction0 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.
    char
    MutableCharCharMap.getIfAbsentPut(char key, CharFunction0 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.
    char
    MutableDoubleCharMap.getIfAbsentPut(double key, CharFunction0 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.
    char
    MutableFloatCharMap.getIfAbsentPut(float key, CharFunction0 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.
    char
    MutableIntCharMap.getIfAbsentPut(int key, CharFunction0 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.
    char
    MutableLongCharMap.getIfAbsentPut(long key, CharFunction0 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.
    char
    MutableObjectCharMap.getIfAbsentPut(K key, CharFunction0 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.
    char
    MutableShortCharMap.getIfAbsentPut(short key, CharFunction0 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.