| 186 | } |
| 187 | |
| 188 | bool MMKV::getBool(std::string_view key, bool defaultValue, bool *hasValue) { |
| 189 | HybridString hybridKey = key; |
| 190 | return getBool(hybridKey.str, defaultValue, hasValue); |
| 191 | } |
| 192 | |
| 193 | int32_t MMKV::getInt32(std::string_view key, int32_t defaultValue, bool *hasValue) { |
| 194 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected