Luna::BasicString::replace
void replace(usize pos, usize count, const BasicString &str)
Replaces characters in range [pos, pos + count) with characters of str.
Parameters
-
in pos
The index of the first character to replace.
-
in count
The number of characters to replace. If
pos + countis greater thanthis->size(),countwill be clamped tothis->size() - pos. -
in str
The string to use for replacement.
Valid Usage
posmust not be greater thanthis->size().