| 399 | } |
| 400 | |
| 401 | Status ClientImpl::zrange(const std::string &name, |
| 402 | uint64_t offset, uint64_t limit, |
| 403 | std::vector<std::string> *ret) |
| 404 | { |
| 405 | std::string s_offset = str(offset); |
| 406 | std::string s_limit = str(limit); |
| 407 | const std::vector<std::string> *resp; |
| 408 | resp = this->request("zrange", name, s_offset, s_limit); |
| 409 | return _read_list(resp, ret); |
| 410 | } |
| 411 | |
| 412 | Status ClientImpl::zrrange(const std::string &name, |
| 413 | uint64_t offset, uint64_t limit, |
no test coverage detected