I have such situation:
(defn a []
(do-something))
(defn b []
(let [original (a)]
(modify-original)))
(defn c []
(binding a b)
(a))
How can I "break binding" and call a in b? I thought that closures can handle such situation so I wrote something similiar to this but it didn't work:
(defn c []
(let [original-a a
b (fn []
(let [original (original-a)]
(modify-original)))]
(b)))
Oh, I almost forgot: the code is much more complicated because c doesn't directly call b. It's called in it's subfunction which I cannot change. This is why I can't use something like:
(defn ^:dynamic state [] (something))