| 202 | return *this; |
| 203 | } |
| 204 | iterator operator ++ (int) |
| 205 | { |
| 206 | iterator temp = *this; |
| 207 | ::std::advance(it, utf8::internal::sequence_length(it)); |
| 208 | return temp; |
| 209 | } |
| 210 | iterator& operator -- () |
| 211 | { |
| 212 | utf8::unchecked::prior(it); |
nothing calls this directly
no test coverage detected