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

Function operator<

src/fl/stl/flat_set.h:339–343  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

337
338template <typename Key, typename Less>
339bool operator<(const flat_set<Key, Less>& lhs,
340 const flat_set<Key, Less>& rhs) {
341 return fl::lexicographical_compare(lhs.begin(), lhs.end(),
342 rhs.begin(), rhs.end());
343}
344
345template <typename Key, typename Less>
346bool operator<=(const flat_set<Key, 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