| 515 | } |
| 516 | |
| 517 | MMKV_EXPORT void removeValueForKey(void *handle, char *oKey) { |
| 518 | MMKV *kv = static_cast<MMKV *>(handle); |
| 519 | if (kv && oKey) { |
| 520 | string key(oKey); |
| 521 | kv->removeValueForKey(key); |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | MMKV_EXPORT void removeValuesForKeys(void *handle, char **keyArray, uint32_t *sizeArray, uint64_t count) { |
| 526 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected