| 1995 | } |
| 1996 | |
| 1997 | void zremrangebyrankCommand(client *c) { |
| 1998 | zremrangeGenericCommand(c,ZRANGE_RANK); |
| 1999 | } |
| 2000 | |
| 2001 | void zremrangebyscoreCommand(client *c) { |
| 2002 | zremrangeGenericCommand(c,ZRANGE_SCORE); |
nothing calls this directly
no test coverage detected