ZREVRANGEBYLEX [LIMIT offset count] */
| 3552 | |
| 3553 | /* ZREVRANGEBYLEX <key> <min> <max> [LIMIT offset count] */ |
| 3554 | void zrevrangebylexCommand(client *c) { |
| 3555 | zrange_result_handler handler; |
| 3556 | zrangeResultHandlerInit(&handler, c, ZRANGE_CONSUMER_TYPE_CLIENT); |
| 3557 | zrangeGenericCommand(&handler, 1, 0, ZRANGE_LEX, ZRANGE_DIRECTION_REVERSE); |
| 3558 | } |
| 3559 | |
| 3560 | /** |
| 3561 | * This function handles ZRANGE and ZRANGESTORE, and also the deprecated |
nothing calls this directly
no test coverage detected