| 7694 | } |
| 7695 | |
| 7696 | bool operator==(const char_t* other) const |
| 7697 | { |
| 7698 | size_t length = static_cast<size_t>(end - begin); |
| 7699 | |
| 7700 | return strequalrange(other, begin, length); |
| 7701 | } |
| 7702 | }; |
| 7703 | |
| 7704 | class xpath_lexer |
nothing calls this directly
no test coverage detected