Skip to content

Instantly share code, notes, and snippets.

@zhouqiang-cl
Created December 12, 2016 16:09
Show Gist options
  • Save zhouqiang-cl/61073dd7862c13d998f00a254b169fc3 to your computer and use it in GitHub Desktop.
Save zhouqiang-cl/61073dd7862c13d998f00a254b169fc3 to your computer and use it in GitHub Desktop.
common lisp 的函数 APROPOS, APROPOS-LIST
语法
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