|  | Home | Libraries | People | FAQ | More | 
Insert into the string.
constexpr basic_static_string& insert( size_type index, size_type count, value_type ch);
            Inserts count copies
            of ch at the position
            index.
          
Strong guarantee.
All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.
            *this
          
| Name | Description | 
|---|---|
| 
                       | The index to insert at. | 
| 
                       | The number of characters to insert. | 
| 
                       | The character to insert. | 
| Type | Thrown On | 
|---|---|
| 
                       | 
                       | 
| 
                       | 
                       |