Sets the array's size. If the array grows, new values begin as nulls. */
| 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);} |
| 117 | |
| 118 | Slot set(uint32_t i) {return Slot(FLMutableArray_Set(*this, i));} |
| 119 | void setNull(uint32_t i) {set(i).setNull();} |
nothing calls this directly
no test coverage detected