std::basic_string<CharT,Traits,Allocator>:: append_range - Reference

en.cppreference.com/w/cpp/string/basic_string/append_range     2023-10-28T00:00:00.0000000
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/string/basic_string/append_range&oldid=161647"

std::basic_string - cppreference.com

en.cppreference.com/w/cpp/string/basic_string     2024-11-10T00:00:00.0000000
The class template basic_string stores and manipulates sequences of character-like objects, which are non-array objects of TrivialType and StandardLayoutType.The class is dependent neither on the character type nor on the nature of operations on that type. The definitions of the operations are supplied via the Traits template parameter - a specialization of std::char_traits or a compatible ...

std::basic_string<CharT,Traits,Allocator>:: append - Reference

en.cppreference.com/w/cpp/string/basic_string/append     2024-12-13T00:00:00.0000000
pointer to the character string to append t - object convertible to std::basic_string_view with the characters to append pos - the index of the first character to append str - string to append first, last - range of characters to append ilist - initializer list with the characters to append

std::basic_string<CharT,Traits,Allocator>:: basic_string - Reference

en.cppreference.com/w/cpp/string/basic_string/basic_string     2024-12-11T00:00:00.0000000
10) Implicitly converts t to a string view sv as if by std:: basic_string_view < CharT, Traits > sv = t;, then constructs a string as if by basic_string (sv. substr (pos, n), alloc). This overload participates in overload resolution only if std:: is_convertible_v < const StringViewLike & ,

std::basic_string<CharT,Traits,Allocator>:: operator+= - Reference

en.cppreference.com/w/cpp/string/basic_string/operator+=     2024-04-22T00:00:00.0000000
5) Implicitly converts t to a string view sv as if by std:: basic_string_view < CharT, Traits > sv = t;, then appends characters in the string view sv as if by append (sv). This overload participates in overload resolution only if std:: is_convertible_v < const StringViewLike & ,

std::vector<T,Allocator>:: append_range - Reference

en.cppreference.com/w/cpp/container/vector/append_range     2023-07-27T00:00:00.0000000
Inserts copies of elements from the range rg before end(), in non-reversing order.. If after the operation the new size() is greater than old capacity() a reallocation takes place, in which case all iterators (including the end() iterator) and all references to the elements are invalidated. Otherwise only the end() iterator is invalidated.. Each iterator in rg is dereferenced exactly once.

std::basic_string<CharT,Traits,Allocator>:: ~basic_string - Reference

en.cppreference.com/w/cpp/string/basic_string/~basic_string     2024-10-18T00:00:00.0000000
Destructs the basic_string.The destructors of the elements are called and the used storage is deallocated. [] ComplexitTypically constant (formally linear).

deduction guides for std::basic_string - cppreference.com

en.cppreference.com/w/cpp/string/basic_string/deduction_guides     2025-04-25T00:00:00.0000000
4) This deduction guide is provided for std::basic_string to allow deduction from a std::from_range_t tag and an input_range. Note: the extent to which the library determines that a type does not satisfy LegacyInputIterator is unspecified, except that as a minimum integral types do not qualify as input iterators.

std::basic_string<CharT,Traits,Allocator>:: assign_range - Reference

en.cppreference.com/w/cpp/string/basic_string/assign_range     2023-10-28T00:00:00.0000000
Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/string/basic_string/assign_range&oldid=161643"

std::inplace_vector<T,N>:: append_range - Reference

en.cppreference.com/w/cpp/container/inplace_vector/append_range     2024-08-23T00:00:00.0000000
a container compatible range, that is, an input_range whose elements are convertible to T Type requirements If T is not EmplaceConstructible into inplace_vector from * ranges:: begin ( rg ) , the behavior is undefined.
Feedback