Interface LongToObjectHashMap.IteratorFunction<V>

Type Parameters:
V - Value type.
Enclosing class:
LongToObjectHashMap<V>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface
public static interface LongToObjectHashMap.IteratorFunction<V>
Interface for map iterator function.
  • Method Summary

    Modifier and Type Method Description
    void accept​(long key, V value)
    Accepts a key-value pair from the map.
  • Method Details

    • accept

      void accept​(long key, V value)
      Accepts a key-value pair from the map.
      Parameters:
      key - The key.
      value - The value.