Hi. First off all thanks for the amazing utility.
I'm not sure that the improvement I would like to see can be made, but I still want to ask a question. Suppose we have the following example.
((fn testy1 []
(->> [-1 0 1 2 3 4 5]
(into [] (comp (map dec)
(filter odd?)
(filter pos?))))))
I don't get any useful information for debugging when inspecting this example. All I see is a series of higher order functions being declared, but I don't see any interaction with the vector. Is there any way to modify this example to provide more useful information for debugging?
Hi. First off all thanks for the amazing utility.
I'm not sure that the improvement I would like to see can be made, but I still want to ask a question. Suppose we have the following example.
I don't get any useful information for debugging when inspecting this example. All I see is a series of higher order functions being declared, but I don't see any interaction with the vector. Is there any way to modify this example to provide more useful information for debugging?