Memoize9X<A, B, C, D, E, F, G, H, I, T> extension

Returns a memoized version of the function.

Caches the result of the function based on its arguments and actually runs the computation only once for a given combination of arguments.

Because of that, the source function must be pure.

on
  • F9<A, B, C, D, E, F, G, H, I, T>

Methods

memoize() F9<A, B, C, D, E, F, G, H, I, T>
Returns a memoized version of the function.