(def record {:a 1 :b 2 :c nil}) (merge (for [[k v] record :when (not (nil? v))] {k v})). This results in a sequence of maps, which isn't what I expected ...
確定! 回上一頁