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

◆ operator==() [1/2]

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

Check if two CHSV objects have the same color data.

Definition at line 666 of file crgb.h.

667{
668 return (lhs.h == rhs.h) && (lhs.s == rhs.s) && (lhs.v == rhs.v);
669}

References FASTLED_FORCE_INLINE.