|| @description || | Remove entry at given index || # || || @parameter index location to remove from this HashMap */
| 351 | || @parameter index location to remove from this HashMap |
| 352 | */ |
| 353 | void removeAt(unsigned index) |
| 354 | { |
| 355 | if(index >= currentIndex) { |
| 356 | return; |
| 357 | } |
| 358 | |
| 359 | keys.remove(index); |
| 360 | values.remove(index); |
| 361 | |
| 362 | currentIndex--; |
| 363 | } |
| 364 | |
| 365 | /* |
| 366 | || @description |