| 246 | } |
| 247 | |
| 248 | bool MMKV::getVector(std::string_view key, std::vector<std::string> &result) { |
| 249 | HybridString hybridKey = key; |
| 250 | return getVector(hybridKey.str, result); |
| 251 | } |
| 252 | |
| 253 | # ifdef MMKV_IOS |
| 254 |
nothing calls this directly
no test coverage detected