diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-02-20 03:02:24 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-02-20 03:02:24 +0000 |
commit | b207e23ee8da264ee38d92ad5d85b0e9975a10cc (patch) | |
tree | d63de22e4c71b8df8108c3dae51abe2e54e6291d /src | |
parent | 09b40d9d45c3e279fb44b1057506675dac59e9db (diff) |
defined dissoc for no keys
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 1 |
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] |