Created
June 20, 2019 17:14
-
-
Save IwoHerka/1a7821d76d900b2428b84e5a166c2af9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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