Interface IntFloatMap

All Superinterfaces:
PrimitiveIntKeyMap, PrimitiveKeyMap
All Known Implementing Classes:
ConcurrentBusyWaitingIntFloatMap, ConcurrentIntFloatMap, PrimitiveFastutilIntFloatWrapper

public interface IntFloatMap extends PrimitiveIntKeyMap
  • Field Details

  • Method Details

    • get

      float get(int key)
    • put

      float put(int key, float value)
    • getDefaultValue

      float getDefaultValue()
    • remove

      float remove(int key)
    • remove

      boolean remove(int key, float value)
    • computeIfAbsent

      float computeIfAbsent(int key, it.unimi.dsi.fastutil.ints.Int2FloatFunction mappingFunction)
    • computeIfPresent

      float computeIfPresent(int key, BiFunction<Integer,Float,Float> mappingFunction)