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

Packages that use IntToIntFunction
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.
  • 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>
    R
    IntIterable.collectInt(IntToIntFunction function, R target)
    Returns the target MutableIntCollection with the results of applying the specified function on each element of the source collection.
    LazyIntIterable.collectInt(IntToIntFunction function)
     
  • Uses of IntToIntFunction in org.eclipse.collections.api.map.primitive

    Modifier and Type
    Method
    Description
    int
    MutableIntIntMap.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.
    int
    MutableByteIntMap.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.
    int
    MutableCharIntMap.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.
    int
    MutableDoubleIntMap.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.
    int
    MutableFloatIntMap.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.
    int
    MutableIntIntMap.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.
    int
    MutableLongIntMap.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.
    int
    MutableObjectIntMap.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.
    int
    MutableShortIntMap.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.