|  | Home | Libraries | People | FAQ | More | 
Erase from the string.
constexpr basic_static_string& erase( size_type index = 0, size_type count = npos);
            Erases num characters
            from the string, starting at index.
            num is determined as
            the smaller of count
            and size()
            - 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 erase at. The default argument for this parameter
                      is  | 
| 
                       | 
                      The number of characters to erase. The default argument for
                      this parameter is  | 
| Type | Thrown On | 
|---|---|
| 
                       | 
                       |