Clojure - Maps dissoc
将键值条目与映射解除关联。
语法
语法如下。
(dissoc hmap key)
参数 − 'hmap'是哈希键和值的映射。 'key'是需要从HashMap中解离的key。
返回值 − 返回带有分离键的映射。
示例
以下是 Clojure 中 dissoc 的示例。
(ns clojure.examples.example (:gen-class)) (defn example [] (def demokeys (hash-map "z" "1" "b" "2" "a" "3")) (println (dissoc demokeys "b"))) (example)
输出
上面的代码产生以下输出。
{z 1, a 3}