(ctx *Context, txn *db.Transaction)
| 62 | } |
| 63 | |
| 64 | func ZRevRange(ctx *Context, txn *db.Transaction) (OnCommit, error) { |
| 65 | return zAnyOrderRange(ctx, txn, false) |
| 66 | } |
| 67 | |
| 68 | func zAnyOrderRange(ctx *Context, txn *db.Transaction, positiveOrder bool) (OnCommit, error) { |
| 69 | key := []byte(ctx.Args[0]) |
nothing calls this directly
no test coverage detected