Interface Ord.IntObjObjConsumer<K,V>

Type Parameters:
K - Key type
V - Value type
Enclosing class:
Ord<E>
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 Ord.IntObjObjConsumer<K,V>
Consumer that receives an ordinal, a key, and a value.

Analogous to BiConsumer, but with an extra ordinal.

See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(int i, K key, V value)
     
  • Method Details

    • accept

      void accept(int i, K key, V value)