Created
December 12, 2016 16:09
-
-
Save zhouqiang-cl/61073dd7862c13d998f00a254b169fc3 to your computer and use it in GitHub Desktop.
common lisp 的函数 APROPOS, APROPOS-LIST
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
语法 | |
apropos string &optional package => <no values> | |
apropos-list string &optional package => symbols | |
参数和值 | |
string --- 一个 string designator. | |
package --- 一个 package designator 或 nil, 默认为 nil | |
symbols --- 一列 symbol | |
描述 | |
搜索名字中包含 string 的 interned symbols. | |
代码 | |
* (apropos "apropos") | |
QL-DIST:SYSTEM-APROPOS (fbound) | |
QL-DIST:SYSTEM-APROPOS-LIST (fbound) | |
APROPOS (fbound) | |
APROPOS-LIST (fbound) | |
* (apropos-list "apropos") | |
(QL-DIST:SYSTEM-APROPOS QL-DIST:SYSTEM-APROPOS-LIST APROPOS APROPOS-LIST) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment