Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Destructuring in function definition #81

Open
nidu opened this issue Jul 8, 2014 · 3 comments
Open

Destructuring in function definition #81

nidu opened this issue Jul 8, 2014 · 3 comments

Comments

@nidu
Copy link

nidu commented Jul 8, 2014

Hello.

Is it recommended to destructure arguments in function definition or in let inside the function? The first approach affects readability though shortens the function. Any thoughts about this? E.g. compare

(defn distance-to-unit 
  [{:keys [scale units-per-pixel] :as viewer} dim value])

and

(defn distance-to-unit 
  [viewer dim value]
    (let [scale (:scale viewer)
          units-per-pixel (:units-per-pixel viewer)]))
@ToBeReplaced
Copy link

It depends. Make the function arguments self-documenting for the caller. If the argument is best understood as a viewer, the arglists should show that. I would use:

;;; Good: let binding inside function
(defn distance-to-unit
  [viewer dim value]
  (let [{:keys [scale units-per-pixel]} viewer]
    ...))

;;; Also good: Fix the arglists.
(defn distance-to-unit
  {:arglists '([viewer dim value])}
  [{:keys [scale units-per-pixel]} dim value]
    ...)

In the case of "options", I would do the destructuring in the function definition (and not alter the arglists) so that the keys show up in the function documentation automatically.

@nidu
Copy link
Author

nidu commented Jul 8, 2014

@ToBeReplaced i like the approach you provided with let. Definition is cleaner and you don't spread parameters definitions among multiple blocks.

Notice also that when you destructure parameters in function definition - you specify some kind of implicit protocol. You can say from it what keys should input arguments contain.

@kliph
Copy link
Contributor

kliph commented Jul 10, 2014

+1 for @ToBeReplaced suggestion for clear arguments.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants