isMemoize method

Function isMemoize([
  1. List? args
])

Creates a function that memoizes the result of func. The memoized function can be provided to other functions to avoid invoking func again.

Implementation

Function isMemoize([List? args]) => memoize(this, args);