| 213 | // the default "big three" are OK |
| 214 | octet_iterator base () const { return it; } |
| 215 | uint32_t operator * () const |
| 216 | { |
| 217 | octet_iterator temp = it; |
| 218 | return utf8::unchecked::next(temp); |
| 219 | } |
| 220 | bool operator == (const iterator& rhs) const |
| 221 | { |
| 222 | return (it == rhs.it); |