Interface BiInt2ObjectMap.EntryConsumer<V>

Type Parameters:
V - type of the value.
Enclosing class:
BiInt2ObjectMap<V>

public static interface BiInt2ObjectMap.EntryConsumer<V>
Handler for a map entry.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(int keyPartA, int keyPartB, V value)
    A map entry.
  • Method Details

    • accept

      void accept(int keyPartA, int keyPartB, V value)
      A map entry.
      Parameters:
      keyPartA - for the key.
      keyPartB - for the key.
      value - for the entry.