| 268 | {return FLMutableDict_GetMutableDict(*this, key);} |
| 269 | |
| 270 | inline MutableArray Array::asMutable() const { |
| 271 | return MutableArray(FLArray_AsMutable(*this)); |
| 272 | } |
| 273 | |
| 274 | inline MutableDict Dict::asMutable() const { |
| 275 | return MutableDict(FLDict_AsMutable(*this)); |
nothing calls this directly
no test coverage detected