set-dispatch-macro-character 的完整文档在哪里?
Where is the complete documentation of set-dispatch-macro-character?
我正在尝试查找 set-dispatch-macro-character
的完整文档。 HyperSpec我试过了,但好像不完整;没有提到 new-function
参数的确切规范。它只说 new-function
是一个“函数指示符”,而没有说明函数指示符有多少个参数以及这些参数是什么。
由于 HyperSpec 不完整,Common Lisp 程序员使用哪些规范参考资料来获得 Common Lisp 内置函数的确切规范?
set-dispatch-macro-character
的文档包含以下交叉引用:
For more information about how the new-function is invoked, see Section 2.1.4.4 (Macro Characters).
您要求的详细信息在该部分中。特别是,它说:
The reader macro function associated with the sub-character C2 is invoked with three arguments: the stream, the sub-character C2, and the infix parameter P.
我正在尝试查找 set-dispatch-macro-character
的完整文档。 HyperSpec我试过了,但好像不完整;没有提到 new-function
参数的确切规范。它只说 new-function
是一个“函数指示符”,而没有说明函数指示符有多少个参数以及这些参数是什么。
由于 HyperSpec 不完整,Common Lisp 程序员使用哪些规范参考资料来获得 Common Lisp 内置函数的确切规范?
set-dispatch-macro-character
的文档包含以下交叉引用:
For more information about how the new-function is invoked, see Section 2.1.4.4 (Macro Characters).
您要求的详细信息在该部分中。特别是,它说:
The reader macro function associated with the sub-character C2 is invoked with three arguments: the stream, the sub-character C2, and the infix parameter P.