| 4055 | } |
| 4056 | |
| 4057 | bool singleKeyOrValue(const std::string& s, size_t sz) { |
| 4058 | // format would be {K[??]} or {V[??]} |
| 4059 | return sz > 5 && s[0] == '{' && (s[1] == 'K' || s[1] == 'V') && s[2] == '[' && s[sz - 2] == ']' && s[sz - 1] == '}'; |
| 4060 | } |
| 4061 | |
| 4062 | bool rangeQuery(const std::string& s) { |
| 4063 | return s == "{...}"; |
no outgoing calls
no test coverage detected