| 221 | } |
| 222 | |
| 223 | bool MMKV::getString(std::string_view key, std::string &result, bool inplaceModification) { |
| 224 | HybridString hybridKey = key; |
| 225 | return getString(hybridKey.str, result, inplaceModification); |
| 226 | } |
| 227 | |
| 228 | mmkv::MMBuffer MMKV::getBytes(std::string_view key) { |
| 229 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected