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

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

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

Methods in net.openhft.koloboke.collect.map with parameters of type ByteBinaryOperator
 byte ByteByteMap.merge(byte key, byte value, ByteBinaryOperator 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.
 byte CharByteMap.merge(char key, byte value, ByteBinaryOperator 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.
 byte DoubleByteMap.merge(double key, byte value, ByteBinaryOperator 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.
 byte FloatByteMap.merge(float key, byte value, ByteBinaryOperator 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.
 byte IntByteMap.merge(int key, byte value, ByteBinaryOperator 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.
 byte ObjByteMap.merge(K key, byte value, ByteBinaryOperator 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.
 byte LongByteMap.merge(long key, byte value, ByteBinaryOperator 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.
 byte ShortByteMap.merge(short key, byte value, ByteBinaryOperator 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.