Creates and returns a channel which contains the contents of coll,
closing when exhausted.
Source
(defnto-chan"Creates and returns a channel which contains the contents of coll,\n closing when exhausted."[coll](let[ch(chan(bounded-count100coll))](onto-chanchcoll)ch))