|| @description || | Remove a key from this HashMap || # || || @parameter key the key to remove from this HashMap */
| 370 | || @parameter key the key to remove from this HashMap |
| 371 | */ |
| 372 | void remove(const K& key) |
| 373 | { |
| 374 | int index = indexOf(key); |
| 375 | if(index >= 0) { |
| 376 | removeAt(index); |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | void clear() |
| 381 | { |