| 268 | FLSlot FLMutableArray_Append(FLMutableArray a) FLAPI {return &a->appending();} |
| 269 | |
| 270 | void FLMutableArray_Insert(FLMutableArray a, uint32_t firstIndex, uint32_t count) FLAPI { |
| 271 | if (a) a->insert(firstIndex, count); |
| 272 | } |
| 273 | |
| 274 | void FLMutableArray_Remove(FLMutableArray a, uint32_t firstIndex, uint32_t count) FLAPI { |
| 275 | if(a) a->remove(firstIndex, count); |