| 191 | } |
| 192 | |
| 193 | int32_t MMKV::getInt32(std::string_view key, int32_t defaultValue, bool *hasValue) { |
| 194 | HybridString hybridKey = key; |
| 195 | return getInt32(hybridKey.str, defaultValue, hasValue); |
| 196 | } |
| 197 | |
| 198 | uint32_t MMKV::getUInt32(std::string_view key, uint32_t defaultValue, bool *hasValue) { |
| 199 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected