Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 21, 2016 14:46
Show Gist options
  • Save zhouqiang-cl/3d69ff6258e39c71af5868393df419d6 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/3d69ff6258e39c71af5868393df419d6 to your computer and use it in GitHub Desktop.
common lisp 的函数 FBOUNDP
语法
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