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

Function removeValueForKey

flutter/mmkv_linux/linux/flutter-bridge.cpp:498–504  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

496}
497
498MMKV_EXPORT void removeValueForKey(void *handle, char *oKey) {
499 MMKV *kv = static_cast<MMKV *>(handle);
500 if (kv && oKey) {
501 string key(oKey);
502 kv->removeValueForKey(key);
503 }
504}
505
506MMKV_EXPORT void removeValuesForKeys(void *handle, char **keyArray, uint32_t *sizeArray, uint64_t count) {
507 MMKV *kv = static_cast<MMKV *>(handle);

Callers

nothing calls this directly

Calls 1

removeValueForKeyMethod · 0.45

Tested by

no test coverage detected