com.twitter.storehaus.cache

Memoize10

class Memoize10[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, +R] extends (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R

Returns an instance of Function10 memoized using the supplied mutable cache.

scala> import com.twitter.storehaus.cache._

scala> type Input = (Int, Int, Int, Int, Int, Int, Int, Int, Int, Int)

scala> val cache = MapCache.empty[Input, String].toMutable()
cache: <munged>

scala> val memoFn = Memoize(cache) { (x1, x2, x3, x4, x5, x6, x7, x8, x9, x10) =>
     |   println("calculating!")
     |   (x1, x2, x3, x4, x5, x6, x7, x8, x9, x10).toString
     | }
memoFn: <munged>

scala> memoFn(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
calculating!
res9: String = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

scala> memoFn(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
res10: String = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
Source
Memoize
Linear Supertypes
(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Memoize10
  2. Function10
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Memoize10(cache: MutableCache[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10), R], backingFn: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R)

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 apply(t1: T1, t2: T2, t3: T3, t4: T4, t5: T5, t6: T6, t7: T7, t8: T8, t9: T9, t10: T10): R

    Definition Classes
    Memoize10 → Function10
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. val backingFn: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R

  9. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  10. def curried: (T1) ⇒ (T2) ⇒ (T3) ⇒ (T4) ⇒ (T5) ⇒ (T6) ⇒ (T7) ⇒ (T8) ⇒ (T9) ⇒ (T10) ⇒ R

    Definition Classes
    Function10
  11. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Definition Classes
    AnyRef → Any
  16. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. final def notify(): Unit

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

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

    Definition Classes
    AnyRef
  21. def toString(): String

    Definition Classes
    Function10 → AnyRef → Any
  22. def tupled: ((T1, T2, T3, T4, T5, T6, T7, T8, T9, T10)) ⇒ R

    Definition Classes
    Function10
  23. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Deprecated Value Members

  1. def curry: (T1) ⇒ (T2) ⇒ (T3) ⇒ (T4) ⇒ (T5) ⇒ (T6) ⇒ (T7) ⇒ (T8) ⇒ (T9) ⇒ (T10) ⇒ R

    Definition Classes
    Function10
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Use 'curried' instead

Inherited from (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10) ⇒ R

Inherited from AnyRef

Inherited from Any