MCPcopy Create free account
hub / github.com/SmingHub/Sming / removeAt

Method removeAt

Sming/Wiring/WHashMap.h:353–363  ·  view source on GitHub ↗

|| @description || | Remove entry at given index || # || || @parameter index location to remove from this HashMap */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

removeMethod · 0.45

Tested by

no test coverage detected