| 473 | typedef pixelset_iterator_base<const PIXEL_TYPE> const_iterator; ///< Const iterator helper type for this class |
| 474 | |
| 475 | iterator begin() { return iterator(leds, dir); } ///< Makes an iterator instance for the start of the LED set |
| 476 | iterator end() { return iterator(end_pos, dir); } ///< Makes an iterator instance for the end of the LED set |
| 477 | |
| 478 | iterator begin() const { return iterator(leds, dir); } ///< Makes an iterator instance for the start of the LED set, const qualified |