Package | Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
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 . |
Modifier and Type | Interface and Description |
---|---|
interface |
UnaryOperator<T>
Represents an operation on a single operand that produces a result of the
same type as its operand.
|