package util
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
class
ImmutableLRU[K, V] extends AnyRef
An immutable key/value store that evicts the least recently accessed elements to stay constrained in a maximum size bound.
-
trait
JMapWrapperLike[A, B, +Repr <: MapLike[A, B, Repr] with Map[A, B]] extends Map[A, B] with MapLike[A, B, Repr]
A wrapper trait for java.util.Map implementations to make them behave as scala Maps.
A wrapper trait for java.util.Map implementations to make them behave as scala Maps. This is useful if you want to have more specifically-typed wrapped objects instead of the generic maps returned by JavaConverters
-
class
LruMap[K, V] extends JMapWrapperLike[K, V, LruMap[K, V]]
A scala
Mapbacked by a java.util.LinkedHashMap - class MapToSetAdapter[A] extends Set[A]
-
class
SynchronizedLruMap[K, V] extends LruMap[K, V]
A synchronized scala
Mapbacked by an java.util.LinkedHashMap
Value Members
-
object
ImmutableLRU
Immutable implementation of an LRU cache.
- object LruMap