MCPcopy Create free account
hub / github.com/Tessil/ordered-map / operator>

Method operator>

include/tsl/ordered_map.h:981–983  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

979 return lhs.m_ht <= rhs.m_ht;
980 }
981 friend bool operator>(const ordered_map& lhs, const ordered_map& rhs) {
982 return lhs.m_ht > rhs.m_ht;
983 }
984 friend bool operator>=(const ordered_map& lhs, const ordered_map& rhs) {
985 return lhs.m_ht >= rhs.m_ht;
986 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected