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

Method operator !=

unittests/catch.hpp:1387–1389  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1385
1386 template<typename RhsT>
1387 auto operator != ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const {
1388 return { compareNotEqual( m_lhs, rhs ), m_lhs, "!=", rhs };
1389 }
1390 auto operator != ( bool rhs ) -> BinaryExpr<LhsT, bool> const {
1391 return { m_lhs != rhs, m_lhs, "!=", rhs };
1392 }

Callers

nothing calls this directly

Calls 1

compareNotEqualFunction · 0.85

Tested by

no test coverage detected