Package

com.twitter

util

Permalink

package util

Visibility
  1. Public
  2. All

Type Members

  1. class ImmutableLRU[K, V] extends AnyRef

    Permalink

    An immutable key/value store that evicts the least recently accessed elements to stay constrained in a maximum size bound.

  2. trait JMapWrapperLike[A, B, +Repr <: MapLike[A, B, Repr] with Map[A, B]] extends Map[A, B] with MapLike[A, B, Repr]

    Permalink

    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

  3. class LruMap[K, V] extends JMapWrapperLike[K, V, LruMap[K, V]]

    Permalink

    A scala Map backed by a java.util.LinkedHashMap

  4. class MapToSetAdapter[A] extends Set[A]

    Permalink
  5. class SynchronizedLruMap[K, V] extends LruMap[K, V]

    Permalink

    A synchronized scala Map backed by an java.util.LinkedHashMap

Value Members

  1. object ImmutableLRU

    Permalink

    Immutable implementation of an LRU cache.

  2. object LruMap

    Permalink

Ungrouped