MCPcopy Create free account
hub / github.com/1a1a11a/libCacheSim / operator<

Method operator<

libCacheSim/dataStructure/sparsepp/spp.h:2454–2457  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2452 }
2453
2454 bool operator<(const sparsetable& x) const
2455 {
2456 return std::lexicographical_compare(begin(), end(), x.begin(), x.end());
2457 }
2458 bool operator!=(const sparsetable& x) const { return !(*this == x); }
2459 bool operator<=(const sparsetable& x) const { return !(x < *this); }
2460 bool operator>(const sparsetable& x) const { return x < *this; }

Callers

nothing calls this directly

Calls 4

beginFunction · 0.85
endFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected