core/autoload/memoize: add autoload cookies
This commit is contained in:
parent
53d67fb622
commit
25091ee375
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; memoize.el
|
;;; memoize.el
|
||||||
(provide 'doom-lib-memoize)
|
(provide 'doom-lib-memoize)
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
(defvar doom-memoized-table (make-hash-table :test 'equal :size 10)
|
(defvar doom-memoized-table (make-hash-table :test 'equal :size 10)
|
||||||
"A lookup table containing memoized functions. The keys are argument lists,
|
"A lookup table containing memoized functions. The keys are argument lists,
|
||||||
and the value is the function's return value.")
|
and the value is the function's return value.")
|
||||||
|
@ -14,6 +15,7 @@ and the value is the function's return value.")
|
||||||
(or (gethash key doom-memoized-table)
|
(or (gethash key doom-memoized-table)
|
||||||
(puthash key (apply ',func args) doom-memoized-table))))))
|
(puthash key (apply ',func args) doom-memoized-table))))))
|
||||||
|
|
||||||
|
;;;###autoload
|
||||||
(defmacro def-memoized! (name arglist &rest body)
|
(defmacro def-memoized! (name arglist &rest body)
|
||||||
"Create a memoize'd function. NAME, ARGLIST, DOCSTRING and BODY
|
"Create a memoize'd function. NAME, ARGLIST, DOCSTRING and BODY
|
||||||
have the same meaning as in `defun'."
|
have the same meaning as in `defun'."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue