Fork me on GitHub
#core-async
<
2022-02-06
>
tianshu19:02:21

what is the elegant way to merge

[(a/go 1)  (a/go 2)  (a/go 3)] 
to a chan contains [1 2 3]

tianshu19:02:58

Something like (a/into [] (a/merge xs)), but keep the order.

Jan K19:02:38

(clojure.core.async/map vector [(go 1) (go 2) (go 3)]) @doglooksgood

tianshu19:02:52

Thank you!