| 385 | // RE2::FullMatch("abc", "[a-z]+(\\d+)?", &number); |
| 386 | template <typename... A> |
| 387 | static bool FullMatch(const StringPiece& text, const RE2& re, A&&... a) { |
| 388 | return Apply(FullMatchN, text, re, Arg(std::forward<A>(a))...); |
| 389 | } |
| 390 | |
| 391 | // Like FullMatch(), except that "re" is allowed to match a substring |
| 392 | // of "text". |