Closed
Description
I think it would be worthwhile to choose a standard symbol for use with as->
.
Sometimes there's an actual name that makes sense in the context, but often an arbitrary symbol is needed for values that change dramatically throughout the macro.
_
(as-> VAL _
(do-stuff nil _ nil)
(do-other-stuff _ nil)
(do-more-stuff _))
This could lead to confusion with the convention of using _
for ignored values.
<>
(as-> VAL <>
(do-stuff nil <> nil)
(do-other-stuff <> nil)
(do-more-stuff <>))
%
(as-> VAL %
(do-stuff nil % nil)
(do-other-stuff % nil)
(do-more-stuff %))
Metadata
Metadata
Assignees
Labels
No labels