| 226 | } |
| 227 | |
| 228 | mmkv::MMBuffer MMKV::getBytes(std::string_view key) { |
| 229 | HybridString hybridKey = key; |
| 230 | return getBytes(hybridKey.str); |
| 231 | } |
| 232 | |
| 233 | bool MMKV::getBytes(std::string_view key, mmkv::MMBuffer &result) { |
| 234 | HybridString hybridKey = key; |
nothing calls this directly
no outgoing calls
no test coverage detected