(Object key, Object val)
| 170 | } |
| 171 | |
| 172 | public IPersistentMap assocEx(Object key, Object val) { |
| 173 | if(containsKey(key)) |
| 174 | throw Util.runtimeException("Key already present"); |
| 175 | return assoc(key, val); |
| 176 | } |
| 177 | |
| 178 | public IPersistentMap without(Object key) { |
| 179 | Map.Entry e = def.keyslots.entryAt(key); |
nothing calls this directly
no test coverage detected