scalaz

Memo

object Memo extends MemoInstances

Source
Memo.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Memo
  2. MemoInstances
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def arrayMemo[V >: Null](n: Int)(implicit arg0: ClassTag[V]): Memo[Int, V]

    Cache results in an n-long array.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def doubleArrayMemo(n: Int, sentinel: Double = 0d): Memo[Int, Double]

    As with arrayMemo, but memoizing double results != sentinel.

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. def immutableHashMapMemo[K, V]: Memo[K, V]

    Cache results in a hash map.

    Cache results in a hash map. Nonsensical unless K has a meaningful hashCode and java.lang.Object.equals. As this memo uses a single var, it's thread-safe.

  16. def immutableMapMemo[K, V](m: Map[K, V]): Memo[K, V]

  17. def immutableTreeMapMemo[K, V](implicit arg0: scala.Ordering[K]): Memo[K, V]

    Cache results in a tree map.

    Cache results in a tree map. As this memo uses a single var, it's thread-safe.

  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. def memo[K, V](f: ((K) ⇒ V) ⇒ (K) ⇒ V): Memo[K, V]

  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def nilMemo[K, V]: Memo[K, V]

  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def immutableListMapMemo[K, V]: Memo[K, V]

    Cache results in a list map.

    Cache results in a list map. Nonsensical unless K has a meaningful java.lang.Object.equals. As this memo uses a single var, it's thread-safe.

    Annotations
    @deprecated
    Deprecated

    (Since version 7.2.19) removed in scalaz 7.3: not efficient

  2. def mutableHashMapMemo[K, V]: Memo[K, V]

    Cache results in a scala.collection.mutable.HashMap.

    Cache results in a scala.collection.mutable.HashMap. Nonsensical if K lacks a meaningful hashCode and java.lang.Object.equals.

    Annotations
    @deprecated
    Deprecated

    (Since version 7.2.19) removed in scalaz 7.3: not thread safe, relies on Object

  3. def mutableMapMemo[K, V](a: Map[K, V]): Memo[K, V]

    Annotations
    @deprecated
    Deprecated

    (Since version 7.2.19) removed in scalaz 7.3: leaks mutable state, not thread safe

  4. def weakHashMapMemo[K, V]: Memo[K, V]

    As with mutableHashMapMemo, but forget elements according to GC pressure.

    As with mutableHashMapMemo, but forget elements according to GC pressure.

    Annotations
    @deprecated
    Deprecated

    (Since version 7.2.19) removed in scalaz 7.3: not thread safe, relies on Object, not efficient

Inherited from MemoInstances

Inherited from AnyRef

Inherited from Any

Ungrouped