(ctx context.Context, store ZStore)
| 662 | } |
| 663 | |
| 664 | func (c cmdable) ZUnion(ctx context.Context, store ZStore) *StringSliceCmd { |
| 665 | args := make([]interface{}, 0, 2+store.len()) |
| 666 | args = append(args, "zunion", len(store.Keys)) |
| 667 | args = store.appendArgs(args) |
| 668 | cmd := NewStringSliceCmd(ctx, args...) |
| 669 | cmd.SetFirstKeyPos(2) |
| 670 | _ = c(ctx, cmd) |
| 671 | return cmd |
| 672 | } |
| 673 | |
| 674 | func (c cmdable) ZUnionWithScores(ctx context.Context, store ZStore) *ZSliceCmd { |
| 675 | args := make([]interface{}, 0, 3+store.len()) |
nothing calls this directly
no test coverage detected