| 148 | inline explicit operator bool() const {return (bool)value();} |
| 149 | inline iterator& operator++ () {next(); return *this;} |
| 150 | inline bool operator!= (const iterator&) {return value() != nullptr;} |
| 151 | inline Value operator[] (unsigned n) const {return FLArrayIterator_GetValueAt(this,n);} |
| 152 | private: |
| 153 | iterator() =default; |
nothing calls this directly
no outgoing calls
no test coverage detected