假设我们有这个嵌套的矢量:
(def coll [nil [["this" nil "this"] nil] nil "this"])
您如何设计remove-nil
函数以便所有nil消失?
(remove-nil coll)
;> [[["this" "this"]] "this"]
答案 0 :(得分:5)
(clojure.walk/postwalk #(if (coll? %) (into (empty %) (remove nil? %)) %) coll)
;=> [[["this" "this"]] "this"]