| 496 | } |
| 497 | |
| 498 | MMKV_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 | |
| 506 | MMKV_EXPORT void removeValuesForKeys(void *handle, char **keyArray, uint32_t *sizeArray, uint64_t count) { |
| 507 | MMKV *kv = static_cast<MMKV *>(handle); |
nothing calls this directly
no test coverage detected