| 196 | } |
| 197 | |
| 198 | uint32_t MMKV::getUInt32(std::string_view key, uint32_t defaultValue, bool *hasValue) { |
| 199 | HybridString hybridKey = key; |
| 200 | return getUInt32(hybridKey.str, defaultValue, hasValue); |
| 201 | } |
| 202 | |
| 203 | int64_t MMKV::getInt64(std::string_view key, int64_t defaultValue, bool *hasValue) { |
| 204 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected