| 1999 | } |
| 2000 | |
| 2001 | void zremrangebyscoreCommand(client *c) { |
| 2002 | zremrangeGenericCommand(c,ZRANGE_SCORE); |
| 2003 | } |
| 2004 | |
| 2005 | void zremrangebylexCommand(client *c) { |
| 2006 | zremrangeGenericCommand(c,ZRANGE_LEX); |
nothing calls this directly
no test coverage detected