
name.remal.com.google.common.cache.CacheBuilder.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
The newest version!
package name.remal
import com.google.common.cache.CacheBuilder
import com.google.common.cache.CacheLoader
import com.google.common.cache.LoadingCache
fun CacheBuilder.build(loader: (key: K) -> V): LoadingCache {
return build(object : CacheLoader() {
override fun load(key: K) = loader(key)
})
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy