Luna::BasicString::erase
void erase(usize index=0, usize count=npos)
Removes count
characters from the specified position.
Parameters
-
in index
The index of the first character to remove.
-
in count
The number of characters to remove. If
count
is greater thansize() - index
, onlysize() - index
characters will be removed.