Enum SetOperation
- Namespace
- StackExchange.Redis
- Assembly
- StackExchange.Redis.StrongName.dll
Describes an algebraic set operation that can be performed to combine multiple sets
public enum SetOperation
Fields
Difference = 2
Returns the members of the set resulting from the difference between the first set and all the successive sets.
Intersect = 1
Returns the members of the set resulting from the intersection of all the given sets.
Union = 0
Returns the members of the set resulting from the union of all the given sets.