| 265 | void FLMutableArray_Resize(FLMutableArray a, uint32_t size) FLAPI {a->resize(size);} |
| 266 | |
| 267 | FLSlot FLMutableArray_Set(FLMutableArray a, uint32_t index) FLAPI {return &a->setting(index);} |
| 268 | FLSlot FLMutableArray_Append(FLMutableArray a) FLAPI {return &a->appending();} |
| 269 | |
| 270 | void FLMutableArray_Insert(FLMutableArray a, uint32_t firstIndex, uint32_t count) FLAPI { |
no outgoing calls
no test coverage detected