| 1393 | FLSlot_SetInt(FLMutableArray_Append(a), val); |
| 1394 | } |
| 1395 | static inline void FLMutableArray_AppendUInt(FLMutableArray a, uint64_t val) { |
| 1396 | FLSlot_SetUInt(FLMutableArray_Append(a), val); |
| 1397 | } |
| 1398 | static inline void FLMutableArray_AppendFloat(FLMutableArray a, float val) { |
| 1399 | FLSlot_SetFloat(FLMutableArray_Append(a), val); |
| 1400 | } |
nothing calls this directly
no test coverage detected