What is the equivalent of Lisp's caddr in Clojure?
|
caddr in Lisps is often used in a manner that amounts to destructuring. Clojure has ubiquitous support for destructuring, so caddr is less useful.
EDIT: In response to @4bu3li.
There is no way to specify the last element w/ destructuring, but that's not really related to the original question anyway. |
|||||||||
|
|
As
It's more generic than |
||||
|
Usually when I need to map a concept from one language to another, I check http://hyperpolyglot.org/ Clojure is included on the Lisp page: http://hyperpolyglot.org/lisp From this, it appears that there is no direct analogue to caddr. |
||||
|
|
|
I suppose the closest equivalent of |
|||
|
|
|
It's not that hard to compose and make your own ca+d+r functions
|
|||||
|
|
There's no direct equivalent to |
|||
|
|
|
A slight variation on Sathish's answer, but using a macro that compiles the
|
|||
|
|