dash.el icon indicating copy to clipboard operation
dash.el copied to clipboard

add ->>as-> function for use with ->>

Open zardoz03 opened this issue 7 months ago • 1 comments

seems better and more consistent to use

(->> 1 (->>as-> i (+ i 1)))

rather than

(->> 1 ((lambda (i) (+ i 1)))

+ there's less consing of misc. closures to mimic the same functionality as -as->

zardoz03 avatar Dec 05 '23 09:12 zardoz03