Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 346 Bytes

dissoc.md

File metadata and controls

24 lines (17 loc) · 346 Bytes
name see also
cljs.core/dissoc
cljs.core/assoc
cljs.core/disj
cljs.core/select-keys

Summary

Details

dissoc(iate)

Returns a new map that does not contain a mapping for key(s).

Has no effect on the map type (hashed/sorted).

Examples

(dissoc {:key "value" :key2 "value2"} :key)
;;=> {:key2 "value2"}