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

◆ operator=() [1/2]

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

Copy the contents of the passed-in set to our set.

Note
If one set is smaller than the other, only the smallest number of items will be copied over.

Definition at line 190 of file pixelset.h.

190 {
191 for(iterator pixel = begin(), rhspixel = rhs.begin(), _end = end(), rhs_end = rhs.end(); (pixel != _end) && (rhspixel != rhs_end); ++pixel, ++rhspixel) {
192 (*pixel) = (*rhspixel);
193 }
194 return *this;
195 }
iterator end()
Makes an iterator instance for the end of the LED set.
Definition pixelset.h:484
pixelset_iterator_base< PIXEL_TYPE > iterator
Iterator helper type for this class.
Definition pixelset.h:480
iterator begin()
Makes an iterator instance for the start of the LED set.
Definition pixelset.h:483
Represents a view/window into a set of LED pixels, providing array-like access and rich color operati...
Definition pixelset.h:110