| 182 | bool isChanged() const {return FLMutableDict_IsChanged(*this);} |
| 183 | |
| 184 | void remove(slice key) {FLMutableDict_Remove(*this, key);} |
| 185 | |
| 186 | Slot set(slice key) {return FLMutableDict_Set(*this, key);} |
| 187 | void setNull(slice key) {set(key) = nullValue;} |
nothing calls this directly
no test coverage detected