Interface IntMap.Entry

Enclosing class:
IntMap
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 IntMap.Entry
Interface used to iterate over the entries.
  • Method Summary

    Modifier and Type Method Description
    boolean entry​(int k, int v)
    Gives an entry.
  • Method Details

    • entry

      boolean entry​(int k, int v)
      Gives an entry.
      Parameters:
      k - the key
      v - the value
      Returns:
      true to continue the iteration.