How to write a dissoc-in command for clojure? May 24, 2023 by Tarik I write this using update-in: (update-in {:a {:b 0 :c 1}} [:a] dissoc :b) => {:a {:c 1}}