| 518 | } |
| 519 | |
| 520 | MMKV_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 | |
| 528 | MMKV_EXPORT void removeValuesForKeys(void *handle, char **keyArray, uint32_t *sizeArray, uint64_t count) { |
| 529 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected