| 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; |
| 154 | friend class Array; |
nothing calls this directly
no test coverage detected