utils
/
it.unibo.tuprolog.utils
/
Cache
/
Companion
common
Companion
object
Companion
Content copied to clipboard
Functions
Functions
lru
Link copied to clipboard
common
fun <
K
,
V
>
lru
(capacity:
Int
= 5):
Cache
<
K
,
V
>
Content copied to clipboard
Creates a new LRU (least recently used) cache
simpleLru
Link copied to clipboard
common
fun <
K
,
V
>
simpleLru
(capacity:
Int
= 5):
Cache
<
K
,
V
>
Content copied to clipboard
Creates a new LRU (least recently used) cache, using a simpler (less memory-consuming) implementation