| 29 | /// @note WS2803 protocol is identical to WS2801 |
| 30 | template <typename InputIterator, typename OutputIterator> |
| 31 | void encodeWS2803(InputIterator first, InputIterator last, OutputIterator out) FL_NOEXCEPT { |
| 32 | // WS2803 uses identical protocol to WS2801 |
| 33 | encodeWS2801(first, last, out); |
| 34 | } |
| 35 | |
| 36 | } // namespace fl |
no test coverage detected