Created
December 21, 2016 14:55
-
-
Save zhouqiang-cl/b9d9ce8ffef4898ce044cbe01bf7ceb8 to your computer and use it in GitHub Desktop.
common lisp 的函数 FMAKUNBOUND
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
语法 | |
fmakunbound name => name | |
参数和值 | |
name --- 一个函数名 | |
描述 | |
移除函数或宏的定义 | |
代码 | |
* (defun test () 1) | |
TEST | |
* (fmakunbound 'test) | |
TEST | |
* (fboundp 'test) | |
NIL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment