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

Packages that use Function
net.openhft.koloboke.collect.map Contains interfaces of Map specializations, their factories and cursors. 
net.openhft.koloboke.function The complete set of functional interfaces, following java.util.function scheme. 
 

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

Methods in net.openhft.koloboke.collect.map with parameters of type Function
 V ObjObjMap.computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)
          If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
 

Uses of Function in net.openhft.koloboke.function
 

Subinterfaces of Function in net.openhft.koloboke.function
 interface UnaryOperator<T>
          Represents an operation on a single operand that produces a result of the same type as its operand.