| 164 | using reference = value_type&; |
| 165 | |
| 166 | UnicodeStringIterator(const icu::UnicodeString* string, int32_t pos) |
| 167 | : s(string) |
| 168 | , i(pos) |
| 169 | { |
| 170 | } |
| 171 | |
| 172 | value_type |
| 173 | operator*() const |
nothing calls this directly
no outgoing calls
no test coverage detected