Skip to content

Instantly share code, notes, and snippets.

@mnemnion
Created October 16, 2013 17:28
Show Gist options
  • Save mnemnion/7011592 to your computer and use it in GitHub Desktop.
Save mnemnion/7011592 to your computer and use it in GitHub Desktop.
seq-string turns a string into a seq on the characters.
(defn seq-string
"make a string seqable by character"
[split-me]
(seq (drop 1 (clojure.string/split split-me #""))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment