我有一个用 defrecord 定义的数据类型,它包含两个向量:
(defrecord MyType [a b])
(def mytype (->MyType [1 2 3] [4 5 6]))
我想要一个函数更新两个向量并返回一个新的 MyType。我能想到的唯一方法是通过嵌套的 assoc 调用:
(defn mutate-mytype [mytype x y]
(assoc mytype :a (assoc (:a mytype) x y)
:b (assoc (:b mytype) x y)))
示例输出:
user=> (mutate-mytype mytype 1 7)
#user.MyType{:a [1 7 3], :b [4 7 6]}
问题:有没有更好的方法来编写 mutate-mytype 方法?