A
B
C
D
E
F
G
H
I
K
L
M
P
R
S
T
V
W
G
- getAll(io.github.dhruv1110.jcachex.Cache,java.util.Collection) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Gets multiple values at once.
- getAllPresent(io.github.dhruv1110.jcachex.Cache,java.util.Collection) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Gets multiple values at once, filtering out null values.
- getDeferred(io.github.dhruv1110.jcachex.Cache,K,kotlinx.coroutines.CoroutineScope) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Asynchronously gets the value for the given key as a Deferred.
- getOrDefault(io.github.dhruv1110.jcachex.Cache,K,V) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Gets the value for the given key, or returns the default value if not present.
- getOrNull(io.github.dhruv1110.jcachex.Cache,K) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Safely gets a value, returning a Result.
- getOrPut(io.github.dhruv1110.jcachex.Cache,K,kotlin.coroutines.SuspendFunction0) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Gets the value for the given key, or computes and stores it if not present.
- getOrPutAsync(io.github.dhruv1110.jcachex.Cache,K,kotlin.coroutines.SuspendFunction1) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Suspending version of getOrPut using the cache's async loader if available.
- getOrPutValue(io.github.dhruv1110.jcachex.Cache,K,kotlin.jvm.functions.Function0) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Gets the value for the key or puts and returns the default value.
- groupBy(io.github.dhruv1110.jcachex.Cache,kotlin.jvm.functions.Function2) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Groups entries by the result of the given function.