| 415 | void FLMutableDict_RemoveAll(FLMutableDict d) FLAPI {if(d) d->removeAll();} |
| 416 | |
| 417 | FLMutableArray FLMutableDict_GetMutableArray(FLMutableDict d, FLString key) FLAPI { |
| 418 | return d ? d->getMutableArray(key) : nullptr; |
| 419 | } |
| 420 | |
| 421 | FLMutableDict FLMutableDict_GetMutableDict(FLMutableDict d, FLString key) FLAPI { |
| 422 | return d ? d->getMutableDict(key) : nullptr; |
no test coverage detected