Luna::BasicString::append
void append(const BasicString &str, usize pos, usize count=npos)
Appends one subrange of another string to the back of the string.
Parameters
-
in str
The string to append.
-
in index_str
The index of the first character in
strto append. -
in count
The number of characters to append. If
countis greater thanstr.size() - pos, onlystr.size() - poscharacters will be appended.