我有以下结构
(def aaa '({:a "read" :b "one"} {:a "open" :b "two"}) )
我需要重命名所有:例如一个键:c,我想得到
({:c "read" :b "one"} {:c "open" :b "two"})
clojure
clojure ×1