![]() |
Home | Libraries | People | FAQ | More |
Insert into the string.
template< typename T> constexpr basic_static_string& insert( size_type index, const T& t);
Constructs a temporary string_view_type
object sv
from t
and inserts {sv.begin(),
sv.end())
at index
.
index
shall be valid within
{data(), data() + size()}
Strong guarantee.
All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.
*this
Type |
Description |
---|---|
|
The type of the object to convert. |
stdis_convertible<const T&, string_view>::value
&& !stdis_convertible<const T&, const
CharT*>::value &&
!stdis_convertible<const T&, const basic_static_string&>::value
.
Name |
Description |
---|---|
|
The index to insert at. |
|
The string to insert from. |
Type |
Thrown On |
---|---|
|
|
|
|