(mapcat> f out)
(mapcat> f out buf-or-n)
Deprecated - this function will be removed. Use transducer instead
Source
(defn mapcat>
"Deprecated - this function will be removed. Use transducer instead"
{:deprecated "0.1.319.0-6b1aca-alpha"}
([f out] (mapcat> f out nil))
([f out buf-or-n]
(let [in (chan buf-or-n)]
(mapcat* f in out)
in)))