| 236 | } |
| 237 | |
| 238 | mmkv::MMBuffer MMKV::getDataForKey(std::string_view key) { |
| 239 | HybridString hybridKey = key; |
| 240 | return getDataForKey(hybridKey.str); |
| 241 | } |
| 242 | |
| 243 | bool MMKV::setDataForKey(mmkv::MMBuffer &&data, std::string_view key, bool isDataHolder) { |
| 244 | HybridStringCP hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected