* @brief Count the number of UTF-8 characters (not bytes) in the string. * @return Number of UTF-8 codepoints. */
| 2334 | * @return Number of UTF-8 codepoints. |
| 2335 | */ |
| 2336 | size_type utf8_count() const noexcept { return sz_utf8_count(start_, length_); } |
| 2337 | |
| 2338 | /** |
| 2339 | * @brief Find the byte offset of the Nth UTF-8 character. |
nothing calls this directly
no test coverage detected