Created
December 21, 2014 19:18
-
-
Save betamatt/f73ee0289e0cb15bce0a to your computer and use it in GitHub Desktop.
Line sequencing
This file contains hidden or 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- split-lines | |
"Takes a sequence of content chunks and returns a lazy sequence of individual lines. | |
(\"abc\" \"de\\nabc\") becomes (\"abcde\" \"abc\")" | |
[stream] | |
(let [ | |
chunk (first stream) | |
remainder (rest stream) | |
[line leftover] (string/split chunk #"\n+" 2)] | |
(if leftover | |
(lazy-seq (cons line (split-lines (cons leftover remainder)))) | |
(recur (cons | |
(string/join "" (cons line (first remainder))) | |
(rest remainder)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Played around and came up with something similar to icambron, but without all the fancy threading. A nice trick 👍 Noted...
(dechunk chunks)
could be replaced with(mapcat #(seq %) chunks)
i think