Y
Hacker News
new
|
ask
|
show
|
jobs
by
emsimot
2619 days ago
Does Common Lisp have something similar to Clojure's threading macros?
(trim-string (get-string '(some data))) (-> '(some data) get-string trim-string
https://clojure.org/guides/threading_macros
1 comments
pcr910303
2619 days ago
Yes, of course there is... Lisp always has the thing you find :-)
https://github.com/hipeta/arrow-macros
link
Riverheart
2619 days ago
Thanks guys, that macro makes it easier to see the flow :)
link