| 298 | |
| 299 | template <typename octet_iterator> |
| 300 | inline bool is_valid(octet_iterator start, octet_iterator end) |
| 301 | { |
| 302 | return (utf8::find_invalid(start, end) == end); |
| 303 | } |
| 304 | |
| 305 | template <typename octet_iterator> |
| 306 | inline bool starts_with_bom (octet_iterator it, octet_iterator end) |
nothing calls this directly
no test coverage detected