| 203 | } |
| 204 | |
| 205 | inline Char* FindFirstOf(Char* b, Char* e) const noexcept { |
| 206 | Char* ret = b; |
| 207 | for (; ret != e; ++ret) { |
| 208 | if (NStringSplitPrivate::Find(Set, *ret)) { |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | return ret; |
| 213 | } |
| 214 | |
| 215 | inline Char* FindFirstOf(Char* b) const noexcept { |
| 216 | const auto bView = std::basic_string_view(b); |
no test coverage detected