mapcat¶. (mapcat f & colls). 等同于调用 (concat (map f colls)) 。 查看源码. user=> (mapcat reverse [[3 2 1 0] [6 5 4] [9 8 7]]) (0 1 2 3 4 5 6 7 8 9) ...
確定! 回上一頁