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

◆ operator==() [2/2]

FASTLED_FORCE_INLINE bool operator== ( const CRGB & lhs,
const CRGB & rhs )

Check if two CRGB objects have the same color data.

Definition at line 654 of file crgb.h.

655{
656 return (lhs.r == rhs.r) && (lhs.g == rhs.g) && (lhs.b == rhs.b);
657}

References FASTLED_FORCE_INLINE.