com.twitter.storehaus.cache

Memoize11

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

Returns an instance of Function11 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, 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, x11) =>
     |   println("calculating!")
     |   (x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11).toString
     | }
memoFn: <munged>

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

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

Instance Constructors

  1. new Memoize11(cache: MutableCache[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11), R], backingFn: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) ⇒ 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, t11: T11): R

    Definition Classes
    Memoize11 → Function11
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. val backingFn: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11) ⇒ 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) ⇒ (T11) ⇒ R

    Definition Classes
    Function11
  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
    Function11 → AnyRef → Any
  22. def tupled: ((T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11)) ⇒ R

    Definition Classes
    Function11
  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) ⇒ (T11) ⇒ R

    Definition Classes
    Function11
    Annotations
    @deprecated
    Deprecated

    (Since version 2.8.0) Use 'curried' instead

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

Inherited from AnyRef

Inherited from Any