What is the efficient way to do reduction after some transformation?
Currently I'm doing it like this: (reduce merge {} (traverse (view to-map-fn) xs))
@funyako.funyao156 traverse
is efficient way to do reduction of a selection of subvalues
that particular snippet doesn't really do anything, it's the same as (merge {} (to-map-fn xs))
@nathanmarz Thank you!