| 239 | using TFindFirstOf<const Char>::TFindFirstOf; |
| 240 | |
| 241 | inline Char* Find(Char*& b, Char* e) const noexcept { |
| 242 | Char* ret = const_cast<Char*>(this->FindFirstOf(b, e)); |
| 243 | |
| 244 | if (ret != e) { |
| 245 | b = ret + 1; |
| 246 | return ret; |
| 247 | } |
| 248 | |
| 249 | return (b = e); |
| 250 | } |
| 251 | |
| 252 | inline Char* Find(Char*& b) const noexcept { |
| 253 | Char* ret = const_cast<Char*>(this->FindFirstOf(b)); |
no test coverage detected