(ctx context.Context, key string, members ...interface{})
| 10 | // Sets are unordered collections of unique strings. |
| 11 | type SetCmdable interface { |
| 12 | SAdd(ctx context.Context, key string, members ...interface{}) *IntCmd |
| 13 | SCard(ctx context.Context, key string) *IntCmd |
| 14 | SDiff(ctx context.Context, keys ...string) *StringSliceCmd |
| 15 | SDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd |
no outgoing calls