| 206 | } |
| 207 | |
| 208 | uint64_t MMKV::getUInt64(std::string_view key, uint64_t defaultValue, bool *hasValue) { |
| 209 | HybridString hybridKey = key; |
| 210 | return getUInt64(hybridKey.str, defaultValue, hasValue); |
| 211 | } |
| 212 | |
| 213 | float MMKV::getFloat(std::string_view key, float defaultValue, bool *hasValue) { |
| 214 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected