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

◆ operator<() [5/8]

template<typename T1, typename T2, typename U1, typename U2>
bool fl::operator< ( const pair< T1, T2 > & lhs,
const pair< U1, U2 > & rhs )

Definition at line 68 of file pair.h.

68 {
69 return lhs.first < rhs.first || (!(rhs.first < lhs.first) && lhs.second < rhs.second);
70}
T1 first
Definition pair.h:16
T2 second
Definition pair.h:17

References FL_NOEXCEPT.