Document istring::insert
This commit is contained in:
parent
c9f3a57cfb
commit
98d55c9869
@ -107,7 +107,11 @@ public:
|
|||||||
|
|
||||||
void clear();
|
void clear();
|
||||||
|
|
||||||
// Insert from self only works if index is after input range
|
/**
|
||||||
|
* \brief Insert a string at the given index
|
||||||
|
*
|
||||||
|
* Inserting a substring of the destination string is not supported.
|
||||||
|
*/
|
||||||
istring& insert(size_t index, const istring& str);
|
istring& insert(size_t index, const istring& str);
|
||||||
istring& insert(size_t index, const istring& str, size_t s_index, size_t count = npos);
|
istring& insert(size_t index, const istring& str, size_t s_index, size_t count = npos);
|
||||||
istring& insert(size_t index, const string_view& str);
|
istring& insert(size_t index, const string_view& str);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user