| 184 | // the default "big three" are OK |
| 185 | octet_iterator base () const { return it; } |
| 186 | uint32_t operator * () const |
| 187 | { |
| 188 | octet_iterator temp = it; |
| 189 | return utf8::unchecked::next(temp); |
| 190 | } |
| 191 | bool operator == (const iterator& rhs) const |
| 192 | { |
| 193 | return (it == rhs.it); |