MCPcopy Create free account
hub / github.com/ROCm/AMDMIGraphX / operator==

Function operator==

src/value.cpp:511–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

509}
510
511bool operator==(const value& x, const value& y)
512{
513 if(x.get_type() != y.get_type())
514 return false;
515 return compare(x, y, std::equal_to<>{});
516}
517bool operator!=(const value& x, const value& y) { return not(x == y); }
518bool operator<(const value& x, const value& y)
519{

Callers

nothing calls this directly

Calls 2

compareFunction · 0.85
get_typeMethod · 0.45

Tested by

no test coverage detected