Skip to content

Instantly share code, notes, and snippets.

@IwoHerka
Created June 20, 2019 17:14
Show Gist options
  • Save IwoHerka/1a7821d76d900b2428b84e5a166c2af9 to your computer and use it in GitHub Desktop.
Save IwoHerka/1a7821d76d900b2428b84e5a166c2af9 to your computer and use it in GitHub Desktop.
(defn map*
[f coll]
(reduce* (fn [acc x] (conj acc (f x))) [] coll))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment