...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Insert into the string.
template< typename T> constexpr basic_static_string& insert( size_type index, const T& t, size_type index_str, size_type count = npos);
Constructs a temporary string_view_type
object sv
from t
and inserts sv.substr(index_str, count)
at index
.
Strong guarantee.
All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.
Type |
Description |
---|---|
|
The type of the object to convert. |
stdis_convertible<const T&, string_view>::value
&& !stdis_convertible<const T&, const_pointer>::value
&& !stdis_convertible<const T&, const
basic_static_string&>::value
.
*this
Name |
Description |
---|---|
|
The index to insert at. |
|
The string to insert from. |
|
The index in the temporary |
|
The number of characters to insert. |
Type |
Thrown On |
---|---|
|
|
|
|
|
|