| 216 | } |
| 217 | |
| 218 | double MMKV::getDouble(std::string_view key, double defaultValue, bool *hasValue) { |
| 219 | HybridString hybridKey = key; |
| 220 | return getDouble(hybridKey.str, defaultValue, hasValue); |
| 221 | } |
| 222 | |
| 223 | bool MMKV::getString(std::string_view key, std::string &result, bool inplaceModification) { |
| 224 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected