just looking to re factor some simple code
I have a function
(defn foo
([x y]
(let [line [x y]]
(...))
([x y z]
(let [plane [x y z]]
(...))))
I know I can write
(let [[x y :as point] [1 0]])
Is there a similar destructuring for functions such as foo where I can write
[x y :as line] or [x y z :as plane] in the actual defn? (i.e plane would be assigned [x y z])