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

◆ operator==() [2/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 56 of file pair.h.

56 {
57 return lhs.first == rhs.first && lhs.second == rhs.second;
58}
T1 first
Definition pair.h:14
T2 second
Definition pair.h:15

References fl::pair< T1, T2 >::first, and fl::pair< T1, T2 >::second.