verifies a UTF-8 stream, returning the total number of Unicode characters found
| 948 | static size_type _verifyUTF8(const unsigned char* c_str); |
| 949 | //! verifies a UTF-8 stream, returning the total number of Unicode characters found |
| 950 | static size_type _verifyUTF8(std::string_view str) |
| 951 | { |
| 952 | return _verifyUTF8(str.data(), str.size()); |
| 953 | } |
| 954 | //! verifies a UTF-8 stream, returning the total number of Unicode characters found |
| 955 | static size_type _verifyUTF8(const char* c_str, size_type num); |
| 956 | //@} |
no test coverage detected