| 252 | //////// IMPLEMENTATION GUNK: |
| 253 | |
| 254 | inline MutableArray Array::mutableCopy(FLCopyFlags flags) const { |
| 255 | return MutableArray(FLArray_MutableCopy(*this, flags), false); |
| 256 | } |
| 257 | inline MutableDict Dict::mutableCopy(FLCopyFlags flags) const { |
| 258 | return MutableDict(FLDict_MutableCopy(*this, flags), false); |
| 259 | } |
nothing calls this directly
no test coverage detected