| 9620 | // Creates a polymorphic matcher that matches anything >= x. |
| 9621 | template <typename Rhs> |
| 9622 | inline internal::GeMatcher<Rhs> Ge(Rhs x) { |
| 9623 | return internal::GeMatcher<Rhs>(x); |
| 9624 | } |
| 9625 | |
| 9626 | // Creates a polymorphic matcher that matches anything > x. |
| 9627 | template <typename Rhs> |
nothing calls this directly
no outgoing calls
no test coverage detected