A
B
C
D
E
F
G
H
I
K
L
M
P
R
S
T
V
W
C
- cacheConfig(kotlin.jvm.functions.Function1) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Creates a cache configuration using a DSL-style builder.
- CacheConfigBuilder - class in io.github.dhruv1110.jcachex.kotlin
- DSL wrapper for CacheConfig.Builder providing a Kotlin-idiomatic configuration experience.
- CacheExtensionsKt - class in io.github.dhruv1110.jcachex.kotlin
- clearDeferred(io.github.dhruv1110.jcachex.Cache,kotlinx.coroutines.CoroutineScope) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Asynchronously clears the cache as a Deferred.
- compute(io.github.dhruv1110.jcachex.Cache,K,kotlin.jvm.functions.Function2) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Computes a value for the given key regardless of whether it's present.
- computeIfAbsent(io.github.dhruv1110.jcachex.Cache,K,kotlin.jvm.functions.Function1) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Computes a value for the given key if it's not present in the cache.
- computeIfPresent(io.github.dhruv1110.jcachex.Cache,K,kotlin.jvm.functions.Function2) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Computes a new value for the given key if it's present in the cache.
- concurrencyLevel(java.lang.Integer) - function in io.github.dhruv1110.jcachex.kotlin.CacheConfigBuilder
- contains(io.github.dhruv1110.jcachex.Cache,K) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Checks if the cache contains the given key using 'in' operator.
- containsValue(io.github.dhruv1110.jcachex.Cache,V) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Returns true if the cache contains the given value.
- count(io.github.dhruv1110.jcachex.Cache,kotlin.jvm.functions.Function2) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Counts the number of entries that match the given predicate.
- createCache(kotlin.jvm.functions.Function1) - function in io.github.dhruv1110.jcachex.kotlin.CacheExtensionsKt
- Creates a cache with the given configuration.