summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2008-02-20 03:02:24 +0000
committerRich Hickey <richhickey@gmail.com>2008-02-20 03:02:24 +0000
commitb207e23ee8da264ee38d92ad5d85b0e9975a10cc (patch)
treed63de22e4c71b8df8108c3dae51abe2e54e6291d /src
parent09b40d9d45c3e279fb44b1057506675dac59e9db (diff)
defined dissoc for no keys
Diffstat (limited to 'src')
-rw-r--r--src/boot.clj1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/boot.clj b/src/boot.clj
index 206c5d3b..11be0c18 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -553,6 +553,7 @@ get
(defn
#^{:doc "dissoc[iate]. Returns a new map of the same (hashed/sorted) type, that does not contain a mapping for key(s)."}
dissoc
+ ([map] map)
([map key]
(. clojure.lang.RT (dissoc map key)))
([map key & ks]