|
FastLED 3.9.15
|
#include <types.h>
Public Member Functions | |
| array_iterator () FL_NOEXCEPT | |
| array_iterator (variant_t *variant, size_t index) FL_NOEXCEPT | |
| bool | operator!= (const array_iterator &other) const FL_NOEXCEPT |
| parse_result< T > | operator* () const FL_NOEXCEPT |
| array_iterator & | operator++ () FL_NOEXCEPT |
| array_iterator | operator++ (int) FL_NOEXCEPT |
| bool | operator== (const array_iterator &other) const FL_NOEXCEPT |
Private Types | |
| using | variant_t = typename json_value::variant_t |
Private Member Functions | |
| size_t | get_size () const FL_NOEXCEPT |
| parse_result< T > | get_value () const FL_NOEXCEPT |
Private Attributes | |
| size_t | mIndex |
| variant_t * | mVariant |