Package org.agrona.collections
Interface BiInt2ObjectMap.EntryFunction<V>
-
- Type Parameters:
V
- type of the value.
- Enclosing class:
- BiInt2ObjectMap<V>
public static interface BiInt2ObjectMap.EntryFunction<V>
Creates a new value based upon keys.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
apply(int keyPartA, int keyPartB)
A map entry.
-
-
-
Method Detail
-
apply
V apply(int keyPartA, int keyPartB)
A map entry.- Parameters:
keyPartA
- for the key.keyPartB
- for the key.- Returns:
- value for the entry.
-
-