template<typename _CharT, typename _Traits, typename _Alloc, template< typename, typename, typename > class _Base>
Insert a C string.
- Parameters
-
| __pos | Iterator referencing location in string to insert at. |
| __s | The C string to insert. |
- Returns
- Reference to this string.
- Exceptions
-
Inserts the first __n characters of __s starting at __pos. If adding characters causes the length to exceed max_size(), length_error is thrown. If __pos is beyond end(), out_of_range is thrown. The value of the string doesn't change if an error is thrown.
Definition at line 1108 of file vstring.h.
1109 {
1113 }
#define __glibcxx_requires_string(_String)
_CharT_alloc_type::size_type size_type
__versa_string & replace(size_type __pos, size_type __n, const __versa_string &__str)
Replace characters with value from another string.
Template class __versa_string.