| 9638 | // Creates a polymorphic matcher that matches anything < x. |
| 9639 | template <typename Rhs> |
| 9640 | inline internal::LtMatcher<Rhs> Lt(Rhs x) { |
| 9641 | return internal::LtMatcher<Rhs>(x); |
| 9642 | } |
| 9643 | |
| 9644 | // Creates a polymorphic matcher that matches anything != x. |
| 9645 | template <typename Rhs> |
nothing calls this directly
no outgoing calls
no test coverage detected