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

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

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

Methods in net.openhft.koloboke.collect.map with parameters of type LongBinaryOperator
 long ByteLongMap.merge(byte key, long value, LongBinaryOperator 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.
 long CharLongMap.merge(char key, long value, LongBinaryOperator 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.
 long DoubleLongMap.merge(double key, long value, LongBinaryOperator 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.
 long FloatLongMap.merge(float key, long value, LongBinaryOperator 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.
 long IntLongMap.merge(int key, long value, LongBinaryOperator 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.
 long ObjLongMap.merge(K key, long value, LongBinaryOperator 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.
 long LongLongMap.merge(long key, long value, LongBinaryOperator 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.
 long ShortLongMap.merge(short key, long value, LongBinaryOperator 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.