(Object key, Object val)
| 159 | } |
| 160 | |
| 161 | public IPersistentMap assocEx(Object key, Object val) { |
| 162 | if(containsKey(key)) |
| 163 | throw Util.runtimeException("Key already present"); |
| 164 | return assoc(key, val); |
| 165 | } |
| 166 | |
| 167 | public IPersistentMap without(Object key){ |
| 168 | if(key == null) |
nothing calls this directly
no test coverage detected