Uses of Interface
com.koloboke.function.Function

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

Uses of Function in com.koloboke.collect.map
 

Methods in com.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 com.koloboke.function
 

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