1 comment

[ 10.8 ms ] story [ 16.6 ms ] thread
Most times that I thought I needed `mapcat`, it turned out using `for` was nicer and more flexible:

    (for [person people
          parent (:parents person)]
      (:name parent))