specter

Latest version: 1.1.3
fmn 2018-10-27T09:48:32.003300Z

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))

nathanmarz 2018-10-27T13:22:11.003900Z

@funyako.funyao156 traverse is efficient way to do reduction of a selection of subvalues

nathanmarz 2018-10-27T13:22:47.004600Z

that particular snippet doesn't really do anything, it's the same as (merge {} (to-map-fn xs))

fmn 2018-10-27T15:22:17.006400Z

@nathanmarz Thank you!