|  | Home | Libraries | People | FAQ | More | 
Insert into the string.
template< [role red error.param neither has a declname nor a 'class ' prefix in the type][role red error.param neither has a declname nor a 'class ' prefix in the type][role red error.param neither has a declname nor a 'class ' prefix in the type][role red error.param neither has a declname nor a 'class ' prefix in the type]> 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. | 
            std::is_convertible<const T&, string_view>::value
            && !std::is_convertible<const T&, const_pointer>::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 | 
|---|---|
| 
                       | 
                       | 
| 
                       | 
                      index >  | 
| 
                       | 
                       |