Returns false if there are no remaining characters to consume.
| 157 | |
| 158 | // Returns false if there are no remaining characters to consume. |
| 159 | int empty() const { return cur_.empty(); } |
| 160 | |
| 161 | // Returns true if the input string successfully matched. When true is |
| 162 | // returned, the remaining string is returned in <remaining> and the captured |
no outgoing calls