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

Function operator>

tests/framework/src/doctest.cpp:708–708  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

706bool operator!=(const String& lhs, const String& rhs) { return lhs.compare(rhs) != 0; }
707bool operator< (const String& lhs, const String& rhs) { return lhs.compare(rhs) < 0; }
708bool operator> (const String& lhs, const String& rhs) { return lhs.compare(rhs) > 0; }
709bool operator<=(const String& lhs, const String& rhs) { return (lhs != rhs) ? lhs.compare(rhs) < 0 : true; }
710bool operator>=(const String& lhs, const String& rhs) { return (lhs != rhs) ? lhs.compare(rhs) > 0 : true; }
711

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected