Return first character not in table, like strpbrk() for inverted table. That is, skip all characters in table
| 87 | /// Return first character not in table, like strpbrk() for inverted table. |
| 88 | /// That is, skip all characters in table |
| 89 | const char* cbrk(const char* s) const { |
| 90 | while (chars_table[(ui8)*s]) { |
| 91 | ++s; |
| 92 | } |
| 93 | return s; |
| 94 | } |
| 95 | |
| 96 | const char* cbrk(const char* s, const char* e) const { |
| 97 | while (s < e && chars_table[(ui8)*s]) { |
no outgoing calls
no test coverage detected