Created
December 21, 2014 19:18
-
-
Save betamatt/f73ee0289e0cb15bce0a to your computer and use it in GitHub Desktop.
Line sequencing
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- 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)))))) |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@betamatt, yeah, that
partition-by
includes the partitions themselves make the solution pretty ugly. I think if I'd defined my ownpartition-by
that didn't do that, it would have come out OK.Edit: also, @ naming people doesn't seem to work in gists? This product needs some serious love.