Comment on Understanding Clojure Transducers Through TypesparentComments−tel12yHe ends up calling that `mapping` later mapping :: (a -> b) -> Transducer b a mapping f xf r a = xf r (f a) which, modulo a little renaming, eta-expansion, and point elimination is the same as your `trans`
Comments
He ends up calling that `mapping` later
which, modulo a little renaming, eta-expansion, and point elimination is the same as your `trans`