Package

com.twitter

util

Permalink

package util

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
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] with SynchronizedMap[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
  3. object SetMaker

    Permalink

    Use guava MapMaker to create a scala Set

  4. val StorageUnitConversions: storage.type

    Permalink
  5. val TimeConversions: time.type

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped