MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator >

Method operator >

unittests/catch.hpp:1395–1397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1393
1394 template<typename RhsT>
1395 auto operator > ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
1396 return { static_cast<bool>(m_lhs > rhs), m_lhs, ">", rhs };
1397 }
1398 template<typename RhsT>
1399 auto operator < ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
1400 return { static_cast<bool>(m_lhs < rhs), m_lhs, "<", rhs };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected