Created
December 4, 2016 06:17
-
-
Save zhouqiang-cl/762bb5c40d089fd3ca77a94881f3e2f7 to your computer and use it in GitHub Desktop.
common lisp 的函数 ENDP
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
语法 | |
endp list => generalized-boolean | |
参数和值 | |
list --- 一个 list | |
generalized-boolean --- 通用型 boolean | |
描述 | |
如果 list 为空, 则返回 true, 否则返回 false | |
代码 | |
* (endp nil) | |
T | |
* (endp '(1 2)) | |
NIL |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment