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.
我对 lisp 很陌生,这很可能是一个非常愚蠢/显而易见的问题,但通常 lisp 可以显示从宏生成的代码吗?
所以对于这个例子
(defmacro nil! (var) (list 'setq var nil))
我希望能够看到扩展代码
(setq a nil)
正如迭戈所说... MACROEXPAND-1。
* (macroexpand-1 '(nil! frob)) (SETQ FROB NIL) T *
I have List<QueueItem> QueueItemList list of objects. I am filtering the objects list by object property Status and assign filtered list to processingList. If I wi
List<QueueItem> QueueItemList
Status
processingList