Skip to content

Instantly share code, notes, and snippets.

@martintrojer
Last active December 18, 2015 08:39
Show Gist options
  • Save martintrojer/5755434 to your computer and use it in GitHub Desktop.
Save martintrojer/5755434 to your computer and use it in GitHub Desktop.
pad
(defn pad-seq
"Returns a lazy seq with coll's items followed by pad"
[col pad]
(lazy-seq (concat col [pad] (pad-seq [] pad))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment