| 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 | } |
| 1401 | static inline void FLMutableArray_AppendDouble(FLMutableArray a, double val) { |
| 1402 | FLSlot_SetDouble(FLMutableArray_Append(a), val); |
| 1403 | } |
nothing calls this directly
no test coverage detected