1 2 3 4 5 6 7 8 9 10 11 12
--- name: "dissoc" module: "maps" section: "Maps" --- Remove a key, returning a new map. Works on both maps and hashmaps. ```sema (dissoc {:a 1 :b 2} :a) ; => {:b 2} (dissoc (hashmap/new :a 1 :b 2) :a) ; hashmap without :a ```