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.
you can't add a transducer to an existing channel
but you could stack a pipe
or pipeline
on it
ah, pipe
. Perfect, dunno how I missed that :)