(ctx *Context, txn *db.Transaction)
| 108 | } |
| 109 | |
| 110 | func ZRevRangeByScore(ctx *Context, txn *db.Transaction) (OnCommit, error) { |
| 111 | return zAnyOrderRangeByScore(ctx, txn, false) |
| 112 | } |
| 113 | |
| 114 | func zAnyOrderRangeByScore(ctx *Context, txn *db.Transaction, positiveOrder bool) (OnCommit, error) { |
| 115 | key := []byte(ctx.Args[0]) |
nothing calls this directly
no test coverage detected