All Downloads are FREE. Search and download functionalities are using the official Maven repository.

godot.util.Cache.kt Maven / Gradle / Ivy

There is a newer version: 0.10.0-4.3.0
Show newest version
package godot.util

// A basic LRU cache.
internal class LRUCache(private val capacity: Int) : LinkedHashMap(capacity, 0.75f, true) {
    override fun removeEldestEntry(eldest: MutableMap.MutableEntry?): Boolean {
        return size > capacity
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy