com.twitter.storehaus.cache
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)
Returns an instance of Function10 memoized using the supplied mutable cache.