Skip to content

Instantly share code, notes, and snippets.

@Netpilgrim
Created September 22, 2011 22:40
Show Gist options
  • Save Netpilgrim/1236249 to your computer and use it in GitHub Desktop.
Save Netpilgrim/1236249 to your computer and use it in GitHub Desktop.
(defn map- [f coll]
(lazy-seq (cons (f (first coll)) (map- f (rest coll)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment