(ctx context.Context, store *ZStore)
| 239 | } |
| 240 | |
| 241 | func (c cmdable) ZInter(ctx context.Context, store *ZStore) *StringSliceCmd { |
| 242 | args := make([]interface{}, 0, 2+store.len()) |
| 243 | args = append(args, "zinter", len(store.Keys)) |
| 244 | args = store.appendArgs(args) |
| 245 | cmd := NewStringSliceCmd(ctx, args...) |
| 246 | cmd.SetFirstKeyPos(2) |
| 247 | _ = c(ctx, cmd) |
| 248 | return cmd |
| 249 | } |
| 250 | |
| 251 | func (c cmdable) ZInterWithScores(ctx context.Context, store *ZStore) *ZSliceCmd { |
| 252 | args := make([]interface{}, 0, 3+store.len()) |
nothing calls this directly
no test coverage detected