True if this array has been modified since it was created. */
| 108 | |
| 109 | /** True if this array has been modified since it was created. */ |
| 110 | bool isChanged() const {return FLMutableArray_IsChanged(*this);} |
| 111 | |
| 112 | /** Removes a range of values from the array. */ |
| 113 | void remove(uint32_t first, uint32_t n =1) {FLMutableArray_Remove(*this, first, n);} |
nothing calls this directly
no test coverage detected