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

◆ operator!=()

template<class PIXEL_TYPE>
bool CPixelView< PIXEL_TYPE >::operator!= ( const CPixelView< PIXEL_TYPE > & rhs) const
inline

Do these sets point to different things? Note that this is different from the contents of the set being the same.

Definition at line 104 of file pixelset.h.

104{ return leds != rhs.leds || len != rhs.len || dir != rhs.dir; }
PIXEL_TYPE *const leds
pointer to the LED data
Definition pixelset.h:72
const int8_t dir
direction of the LED data, either 1 or -1. Determines how the pointer is incremented.
Definition pixelset.h:69
const int len
length of the LED data, in PIXEL_TYPE units.
Definition pixelset.h:70
Represents a set of LED objects.
Definition pixelset.h:67