@brief Clears the string contents, but @b no deallocations happen. */
| 3566 | |
| 3567 | /** @brief Clears the string contents, but @b no deallocations happen. */ |
| 3568 | void clear() noexcept { sz_string_erase(&string_, 0, SZ_SIZE_MAX); } |
| 3569 | |
| 3570 | /** |
| 3571 | * @brief Erases ( @b in-place ) the given range of characters. |
nothing calls this directly
no test coverage detected