Skip to content

Instantly share code, notes, and snippets.

@skrat
Created February 3, 2015 18:00
Show Gist options
  • Save skrat/f2d094d2a2e7c4135a56 to your computer and use it in GitHub Desktop.
Save skrat/f2d094d2a2e7c4135a56 to your computer and use it in GitHub Desktop.
xs.unshift(0).zip(xs.push(1)).map ([a, b]) -> ...
vs.
(->> (zip (cons 0 xs)
(conj xs 1))
(map (fn [[a, b]] ...)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment