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;};