MCPcopy Create free account
hub / github.com/Tencent/MMKV / removeValueForKey

Function removeValueForKey

OpenHarmony/MMKV/src/main/cpp/flutter-bridge.cpp:517–523  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515}
516
517MMKV_EXPORT void removeValueForKey(void *handle, char *oKey) {
518 MMKV *kv = static_cast<MMKV *>(handle);
519 if (kv && oKey) {
520 string key(oKey);
521 kv->removeValueForKey(key);
522 }
523}
524
525MMKV_EXPORT void removeValuesForKeys(void *handle, char **keyArray, uint32_t *sizeArray, uint64_t count) {
526 MMKV *kv = static_cast<MMKV *>(handle);

Callers

nothing calls this directly

Calls 1

removeValueForKeyMethod · 0.45

Tested by

no test coverage detected