Created
December 3, 2017 17:46
-
-
Save gszeliga/596d4d05f2fd4d73130c0332040010d4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn stream-lines-from [path] | |
(let [c (chan 1024)] | |
(go | |
(with-open [rdr (io/reader path)] | |
(doseq [line (line-seq rdr)] | |
(>! c line))) | |
(close! c)) | |
c)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment