core-async

dominicm 2020-06-04T15:01:49.437800Z

What's the idiomatic way to add a transducer to a channel that's returned from a function? e.g. the datomic client api returns channels.

alexmiller 2020-06-04T15:19:29.438100Z

you can't add a transducer to an existing channel

alexmiller 2020-06-04T15:19:41.438400Z

but you could stack a pipe or pipeline on it

dominicm 2020-06-04T15:29:08.438500Z

ah, pipe. Perfect, dunno how I missed that :)