|
|
|
|
|
by vaylian
1012 days ago
|
|
If I understand you correctly, transduces transform something like (map fn1 (map fn2 (map fn3 collection))) into (map (fn [x] (fn1 (fn2 (fn3 x)))) collection); Is that correct? More idiomatic clojure: (map (comp fn1 fn2 fn3) collection) |
|