| 91 | |
| 92 | template <typename u32> |
| 93 | inline bool is_code_point_valid(u32 cp) |
| 94 | { |
| 95 | return (cp <= CODE_POINT_MAX && !utf8::internal::is_surrogate(cp)); |
| 96 | } |
| 97 | |
| 98 | template <typename octet_iterator> |
| 99 | inline typename std::iterator_traits<octet_iterator>::difference_type |
no test coverage detected