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

Method operator>

extlibs/fmt/include/fmt/core.h:430–432  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

428 return lhs.compare(rhs) <= 0;
429 }
430 friend bool operator>(basic_string_view lhs, basic_string_view rhs) {
431 return lhs.compare(rhs) > 0;
432 }
433 friend bool operator>=(basic_string_view lhs, basic_string_view rhs) {
434 return lhs.compare(rhs) >= 0;
435 }

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected