| 211 | } |
| 212 | |
| 213 | float MMKV::getFloat(std::string_view key, float defaultValue, bool *hasValue) { |
| 214 | HybridString hybridKey = key; |
| 215 | return getFloat(hybridKey.str, defaultValue, hasValue); |
| 216 | } |
| 217 | |
| 218 | double MMKV::getDouble(std::string_view key, double defaultValue, bool *hasValue) { |
| 219 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected