Object/Class

scalaz

Memo

Related Docs: class Memo | package scalaz

Permalink

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
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

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

    Permalink

    Cache results in an n-long array.

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

    Permalink

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

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

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

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

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

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

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

    Permalink

    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.

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

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

    Permalink

    Cache results in a tree map.

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

  16. final def isInstanceOf[T0]: Boolean

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

    Permalink
  18. final def ne(arg0: AnyRef): Boolean

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

    Permalink
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

    Permalink

    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]

    Permalink

    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]

    Permalink
    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]

    Permalink

    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