PreviousUpNext

14.4.51  Memoize

The standard library Memoize api defines access to a simple memoization facility.

(Memoization defers evaluation of a function until its result is actually needed, then transparently stores and re-uses the return result thereafter.)

The Memoize api is implemented by the memoize package.

The Memoize api source code is in src/lib/std/memoize.api.

The above information is manually maintained and may contain errors.

api {
    memoize : (X -> Y) -> X -> Y;};


Comments and suggestions to: bugs@mythryl.org

PreviousUpNext