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

destructuring idea using ...

Open Luis-Henriquez-Perez opened this issue 4 years ago • 6 comments

A destructuring idea using ...:

(-let [(first ... last) '(1 2 3 4 5)]
  (list first last))
;; => (1 5)

(-let [(first ... second-to-last last) '(1 2 3 4 5)]
  (list first second-to-last last))
;; => (1 4 5)

Luis-Henriquez-Perez avatar Feb 29 '20 14:02 Luis-Henriquez-Perez