Package org.agrona.collections
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(int keyPartA, int keyPartB, V value)
A map entry
-
-
-
Method Detail
-
accept
void accept(int keyPartA, int keyPartB, V value)
A map entry- Parameters:
keyPartA
- for the keykeyPartB
- for the keyvalue
- for the entry
-
-