| 463 | } |
| 464 | |
| 465 | MMKV_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 | |
| 474 | MMKV_EXPORT uint64_t count(void *handle, bool filterExpire) { |
| 475 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected