| 687 | } |
| 688 | |
| 689 | void 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 | |
| 696 | void String::remove(unsigned int index, unsigned int count){ |
| 697 | if (index >= len) { return; } |
nothing calls this directly
no outgoing calls
no test coverage detected