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

Method operator >=

unittests/catch.hpp:2117–2119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2115
2116 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
2117 friend bool operator >= ( T const& lhs, Approx const& rhs ) {
2118 return static_cast<double>(lhs) > rhs.m_value || lhs == rhs;
2119 }
2120
2121 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
2122 friend bool operator >= ( Approx const& lhs, T const& rhs ) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected