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

Function removeValueForKey

Android/MMKV/mmkv/src/main/cpp/flutter-bridge.cpp:520–526  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

removeValueForKeyMethod · 0.45

Tested by

no test coverage detected