Removes a range of values from the array. */
| 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);} |
| 114 | |
| 115 | /** Sets the array's size. If the array grows, new values begin as nulls. */ |
| 116 | void resize(uint32_t size) {FLMutableArray_Resize(*this, size);} |
nothing calls this directly
no test coverage detected