FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator<() [3/8]

template<typename Key, typename Value, typename Less>
bool fl::operator< ( const flat_map< Key, Value, Less > & lhs,
const flat_map< Key, Value, Less > & rhs )

Definition at line 525 of file flat_map.h.

526 {
527 return fl::lexicographical_compare(lhs.begin(), lhs.end(),
528 rhs.begin(), rhs.end());
529}
iterator begin() FL_NOEXCEPT
Definition flat_map.h:83
iterator end() FL_NOEXCEPT
Definition flat_map.h:84
bool lexicographical_compare(Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2) FL_NOEXCEPT
Definition algorithm.h:146

References FL_NOEXCEPT, and lexicographical_compare().

+ Here is the call graph for this function: