| 167 | |
| 168 | template <typename octet_iterator, typename u32bit_iterator> |
| 169 | u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result) |
| 170 | { |
| 171 | while (start < end) |
| 172 | (*result++) = utf8::unchecked::next(start); |
| 173 | |
| 174 | return result; |
| 175 | } |
| 176 | |
| 177 | // The iterator class |
| 178 | template <typename octet_iterator> |