1 comment

[ 2.4 ms ] story [ 12.4 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))