< Makes an iterator instance for the start of the LED set
| 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 |
| 479 | iterator end() const { return iterator(end_pos, dir); } ///< Makes an iterator instance for the end of the LED set, const qualified |