| 1353 | FLSlot_SetNull(FLMutableArray_Set(a, index)); |
| 1354 | } |
| 1355 | static inline void FLMutableArray_SetBool(FLMutableArray a, uint32_t index, bool val) { |
| 1356 | FLSlot_SetBool(FLMutableArray_Set(a, index), val); |
| 1357 | } |
| 1358 | static inline void FLMutableArray_SetInt(FLMutableArray a, uint32_t index, int64_t val) { |
| 1359 | FLSlot_SetInt(FLMutableArray_Set(a, index), val); |
| 1360 | } |
nothing calls this directly
no test coverage detected