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

◆ operator<() [4/8]

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

Definition at line 339 of file flat_set.h.

340 {
341 return fl::lexicographical_compare(lhs.begin(), lhs.end(),
342 rhs.begin(), rhs.end());
343}
iterator begin()
Definition flat_set.h:75
iterator end()
Definition flat_set.h:76
bool lexicographical_compare(Iterator1 first1, Iterator1 last1, Iterator2 first2, Iterator2 last2) FL_NOEXCEPT
Definition algorithm.h:146

References fl::flat_set< Key, Less >::begin(), fl::flat_set< Key, Less >::end(), and lexicographical_compare().

+ Here is the call graph for this function: