Clojure's doall function is perfect for this: (with-precision 4 (doall (map (fn [x] (/ x 3)) (range 1M 4M)))) ;=> (0.3333M 0.6667M 1M) One drawback is that ...
確定! 回上一頁