Interface LongLongMap

All Superinterfaces:
PrimitiveKeyMap, PrimitiveLongKeyMap
All Known Implementing Classes:
ConcurrentBusyWaitingLongLongMap, ConcurrentLongLongMap, PrimitiveFastutilLongLongWrapper

public interface LongLongMap extends PrimitiveLongKeyMap
  • Field Details

  • Method Details

    • get

      long get(long key)
      Parameters:
      key -
      Returns:
      0 if the key is not present
    • put

      long put(long key, long value)
    • getDefaultValue

      long getDefaultValue()
    • remove

      long remove(long key)
    • remove

      boolean remove(long key, long value)
    • computeIfAbsent

      long computeIfAbsent(long key, it.unimi.dsi.fastutil.longs.Long2LongFunction mappingFunction)
    • computeIfPresent

      long computeIfPresent(long key, BiFunction<Long,Long,Long> mappingFunction)