I have a clojure function that needs to push information into a map if a particular condition is true, using that map as a parameter for another function.
I have the following, but it feels clumsy with the repeated calls to the bar function.
(defn foo ([opts]
(if (= true (something))
(bar (into opts {:a b}))
(bar opts)))
(def bar [opts])
So if (something) is true, we push extra options into the opts parameter before calling the bar function, otherwise we just pass it through.