| 247 | |
| 248 | template <typename octet_iterator, typename u32bit_iterator> |
| 249 | octet_iterator utf32to8 (u32bit_iterator start, u32bit_iterator end, octet_iterator result) |
| 250 | { |
| 251 | while (start != end) |
| 252 | result = utf8::append(*(start++), result); |
| 253 | |
| 254 | return result; |
| 255 | } |
| 256 | |
| 257 | template <typename octet_iterator, typename u32bit_iterator> |
| 258 | u32bit_iterator utf8to32 (octet_iterator start, octet_iterator end, u32bit_iterator result) |