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