Created
December 21, 2016 14:46
-
-
Save zhouqiang-cl/3d69ff6258e39c71af5868393df419d6 to your computer and use it in GitHub Desktop.
common lisp 的函数 FBOUNDP
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
语法 | |
fboundp name => generalized-boolean | |
参数和值 | |
name --- 一个函数名 | |
generalized-boolean --- 一个 generalized-boolean | |
描述 | |
如果被某个函数绑定, 返回 true, 否则返回 false | |
代码 | |
* (fboundp 'test) | |
T | |
* (fboundp 'car) | |
T | |
* (fboundp 'cadadar) | |
NIL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment