| 144 | inline uint32_t count() const {return FLArrayIterator_GetCount(this);} |
| 145 | inline bool next(); |
| 146 | inline valueptr operator -> () const {return valueptr(value());} |
| 147 | inline Value operator * () const {return value();} |
| 148 | inline explicit operator bool() const {return (bool)value();} |
| 149 | inline iterator& operator++ () {next(); return *this;} |