Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # dissoc ### Syntax <code> (dissoc hmap key) </code> {{ https://i.imgur.com/KvxXuJe.jpg }} ### Example <code> (ns clojure.examples.example (:gen-class)) (defn example [] (def demokeys (hash-map "z" "1" "b" "2" "a" "3")) (println (dissoc demokeys "b"))) (example) </code> #### Output <code> {z 1, a 3} </code> ## Refs - https://www.tutorialspoint.com/clojure/clojure_maps_dissoc.htm open/dissoc.txt Last modified: 2024/10/05 06:15by 127.0.0.1