Clojure : idiomatic update a map's value IF the key exists. ... (defn c [new-doc k] (if (contains? new-doc k) (assoc new-doc k []) new-doc)) ...
確定! 回上一頁