We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently:
string& append(const string& str); string& append(const string& str, size_t subpos, size_t sublen); string& append(const char* s); string& append(const char* s, size_t n); string& append(size_t n, char c); template <typename TIterator> string& append(TIterator first, Titerator last);
without using the iterator?
The text was updated successfully, but these errors were encountered:
This functionality would logically be applicable to construction, insert, assign, 'append', replace, assignment operator, as well.
insert
assign
replace
There are also some 'string view' like functions that were added with C++20.
Sorry, something went wrong.
Merge branch 'feature/#962-Request--allow-(overload)-string-append-a-…
f2099b5
…string_view' into development # Conflicts: # include/etl/basic_string.h
jwellbelove
No branches or pull requests
Currently:
without using the iterator?
The text was updated successfully, but these errors were encountered: