| 401 | // ignored. |
| 402 | template <typename... A> |
| 403 | static bool PartialMatch(const StringPiece& text, const RE2& re, A&&... a) { |
| 404 | return Apply(PartialMatchN, text, re, Arg(std::forward<A>(a))...); |
| 405 | } |
| 406 | |
| 407 | // Like FullMatch() and PartialMatch(), except that "re" has to match |
| 408 | // a prefix of the text, and "input" is advanced past the matched |