Returns true iff this matcher matches x.
| 9170 | |
| 9171 | // Returns true iff this matcher matches x. |
| 9172 | bool Matches(const T& x) const { |
| 9173 | DummyMatchResultListener dummy; |
| 9174 | return MatchAndExplain(x, &dummy); |
| 9175 | } |
| 9176 | |
| 9177 | // Describes this matcher to an ostream. |
| 9178 | void DescribeTo(::std::ostream* os) const { impl_->DescribeTo(os); } |