Clojure itself already implements this on java.util. ... (def m (my-custom-map {:a 1 :b (atom 2) :c (delay 3)})) (:a m) ; => 1 (:b m) ...
確定! 回上一頁