* @brief Removes the last character from the string. * @warning The behavior is @b undefined if the string is empty. */
| 3898 | * @warning The behavior is @b undefined if the string is empty. |
| 3899 | */ |
| 3900 | void pop_back() noexcept { sz_string_erase(&string_, size() - 1, 1); } |
| 3901 | |
| 3902 | /** |
| 3903 | * @brief Overwrites the string with the given string. |
no test coverage detected