You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
(defndistance-to-unit
[{:keys [scale units-per-pixel] :as viewer} dim value])
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
(defndistance-to-unit
[viewer dim value]
(let [{:keys [scale units-per-pixel]} viewer]
...))
;;; Also good: Fix the arglists.
(defndistance-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.
@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.
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
and
The text was updated successfully, but these errors were encountered: