(ctx context.Context, z ZRangeArgs)
| 439 | } |
| 440 | |
| 441 | func (c cmdable) ZRangeArgs(ctx context.Context, z ZRangeArgs) *StringSliceCmd { |
| 442 | args := make([]interface{}, 0, 9) |
| 443 | args = append(args, "zrange") |
| 444 | args = z.appendArgs(args) |
| 445 | cmd := NewStringSliceCmd(ctx, args...) |
| 446 | _ = c(ctx, cmd) |
| 447 | return cmd |
| 448 | } |
| 449 | |
| 450 | func (c cmdable) ZRangeArgsWithScores(ctx context.Context, z ZRangeArgs) *ZSliceCmd { |
| 451 | args := make([]interface{}, 0, 10) |
no test coverage detected