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

Method operator ==

unittests/catch.hpp:1379–1381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1377
1378 template<typename RhsT>
1379 auto operator == ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
1380 return { compareEqual( m_lhs, rhs ), m_lhs, "==", rhs };
1381 }
1382 auto operator == ( bool rhs ) -> BinaryExpr<LhsT, bool> const {
1383 return { m_lhs == rhs, m_lhs, "==", rhs };
1384 }

Callers

nothing calls this directly

Calls 1

compareEqualFunction · 0.85

Tested by

no test coverage detected