When one is defining a macro that uses a macrolet, or defining a macro that defines a macro, it seems one uses ,',
or ,
to unquote things. Is there ever a case when I need to use ,,
?
相关问题
- I want to trace logs using a Macro multi parameter
- Generating powerset in one function, no explicit r
- Solaris and Preprocessor Macros
- integer to word conversion in java using map conti
- What does “macro annotations embedding in comments
相关文章
- Macro expansion in elixir: how to define 2 macros
- How to import macros in Rust?
- Does learning one Lisp help in learning the other?
- Using C Preprocessing to get integer value of a st
- Using UNREFERENCED_PARAMETER macro
- What is “3D syntax”?
- What is the definition of “natural recursion”?
- How do I write a macro-defining macro in common li
Sure.
Here is code from Graham's "On Lisp":
Another example is from
clx/gcontext.lisp
:In short, this is not very common, but not unheard of.