TE
TechEcho
Home
24h Top
Newest
Best
Ask
Show
Jobs
English
GitHub
Twitter
Home
Cool Clojure functions (2014)
16 points
by
MosheZada
over 9 years ago
1 comment
sdegutis
over 9 years ago
Most times that I thought I needed `mapcat`, it turned out using `for` was nicer and more flexible:<p><pre><code> (for [person people parent (:parents person)] (:name parent))</code></pre>