| 631 | inline Value Array::get(uint32_t i) const {return FLArray_Get(*this, i);} |
| 632 | |
| 633 | inline Array::iterator::iterator(Array a) {FLArrayIterator_Begin(a, this);} |
| 634 | inline Value Array::iterator::value() const {return FLArrayIterator_GetValue(this);} |
| 635 | inline bool Array::iterator::next() {return FLArrayIterator_Next(this);} |
| 636 |
nothing calls this directly
no test coverage detected