LE
Size: a a a
LE
OR
OR
ST
(defn transform-collection
[xs]
(->> xs (map fn-1) (apply merge)))
(-> start-value
transform-collection
(with-meta {:some-meta true}))
LE
OR
ST
LE
LE
ST
(defn transform-collection
[xs f]
(->> xs (map f) (apply merge)))
(-> start-value
(transform-collection fn-1)
(with-meta {:some-meta true}))
LE
OR
(map #(-> % :a))
если там правда так, то (map :a)
ST
(->> [{:a {:b 1 :c "a"}} {:a {:b 2}}]
(into {} (mapcat :a)))
OR
ST
LE
ST
ST
LE
DF