Function: CLEAR-MEMOIZE
Source
(defun clear-memoize (fn-name) (let ((table (get fn-name 'memo))) (when table (clrhash table))))
Source Context