Uses of Interface
net.openhft.koloboke.function.IntBinaryOperator

Packages that use IntBinaryOperator
net.openhft.koloboke.collect.map Contains interfaces of Map specializations, their factories and cursors. 
 

Uses of IntBinaryOperator in net.openhft.koloboke.collect.map
 

Methods in net.openhft.koloboke.collect.map with parameters of type IntBinaryOperator
 int ByteIntMap.merge(byte key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int CharIntMap.merge(char key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int DoubleIntMap.merge(double key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int FloatIntMap.merge(float key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int IntIntMap.merge(int key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int ObjIntMap.merge(K key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int LongIntMap.merge(long key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.
 int ShortIntMap.merge(short key, int value, IntBinaryOperator remappingFunction)
          If the specified key is not already associated with a value, associates it with the given value, otherwise, replaces the value with the results of the given remapping function.