| 181 | } |
| 182 | |
| 183 | bool MMKV::removeValueForKey(std::string_view key) { |
| 184 | HybridString hybridKey = key; |
| 185 | return removeValueForKey(hybridKey.str); |
| 186 | } |
| 187 | |
| 188 | bool MMKV::getBool(std::string_view key, bool defaultValue, bool *hasValue) { |
| 189 | HybridString hybridKey = key; |
nothing calls this directly
no test coverage detected