| 1350 | // implementations of the inline methods declared earlier: |
| 1351 | |
| 1352 | static inline void FLMutableArray_SetNull(FLMutableArray a, uint32_t index) { |
| 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 | } |
nothing calls this directly
no test coverage detected