MCPcopy Create free account
hub / github.com/MCUdude/MicroCore / remove

Method remove

avr/cores/microcore/WString.cpp:689–694  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687}
688
689void String::remove(unsigned int index){
690 // Pass the biggest integer as the count. The remove method
691 // below will take care of truncating it at the end of the
692 // string.
693 remove(index, (unsigned int)-1);
694}
695
696void String::remove(unsigned int index, unsigned int count){
697 if (index >= len) { return; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected