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

Method remove

Sming/Wiring/WHashMap.h:372–378  ·  view source on GitHub ↗

|| @description || | Remove a key from this HashMap || # || || @parameter key the key to remove from this HashMap */

Source from the content-addressed store, hash-verified

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 {

Callers 1

removeAtMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected