MCPcopy Create free account
hub / github.com/FastLED/FastLED / operator<

Function operator<

src/fl/stl/flat_map.h:525–529  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

523
524template <typename Key, typename Value, typename Less>
525bool operator<(const flat_map<Key, Value, Less>& lhs,
526 const flat_map<Key, Value, Less>& rhs) FL_NOEXCEPT {
527 return fl::lexicographical_compare(lhs.begin(), lhs.end(),
528 rhs.begin(), rhs.end());
529}
530
531template <typename Key, typename Value, typename Less>
532bool operator<=(const flat_map<Key, Value, Less>& lhs,

Callers

nothing calls this directly

Calls 3

lexicographical_compareFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected