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