Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
パッケージで定義されているすべてのクラスをリストすることは可能だと確信していますが、その方法がわかりません。
誰も答えを持っていますか?
ありがとう、
私はついにこのコードを書きました。それは私が必要としていたことをします:
(defun list-package-class (package) (let (classes) (do-external-symbols (s (find-package package)) (when (find-class s nil) (push s classes))) classes))