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

Function containsKey

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

Source from the content-addressed store, hash-verified

463}
464
465MMKV_EXPORT bool containsKey(void *handle, char *oKey) {
466 MMKV *kv = static_cast<MMKV *>(handle);
467 if (kv && oKey) {
468 string key(oKey);
469 return kv->containsKey(key);
470 }
471 return false;
472}
473
474MMKV_EXPORT uint64_t count(void *handle, bool filterExpire) {
475 MMKV *kv = static_cast<MMKV *>(handle);

Callers

nothing calls this directly

Calls 1

containsKeyMethod · 0.45

Tested by

no test coverage detected