| 1996 | } |
| 1997 | template<typename RhsT> |
| 1998 | auto operator < ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 1999 | return { static_cast<bool>(m_lhs < rhs), m_lhs, "<", rhs }; |
| 2000 | } |
| 2001 | template<typename RhsT> |
| 2002 | auto operator >= ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 2003 | return { static_cast<bool>(m_lhs >= rhs), m_lhs, ">=", rhs }; |
nothing calls this directly
no outgoing calls
no test coverage detected