Documentation for package :memo
Author: R. Scott McIntire
Version: 1.0
Overview
Provide function memoizers and function memo-caching functions of a single input. Function summary: defmemo : A macro that will define a memoized function. defcache: A macro that will define a memoized function with a storage limit.
defcache   
(fn (arg) body &key cache-size)
Define a function of one arg which will memoize the last
values.
defmemo   
(fn (arg) &body body)
Define a function of one arg which memoizes its values.