2021 Enumeration
Changes 0
E

SetComparisonResult

Description:
An enumerated type listing all the relationship types between two sets of arbitrary nature.
public enum SetComparisonResult
Name Description
E LeftEmpty The left set is empty and the right set is not.
E RightEmpty The right set is empty and the left set is not.
E BothEmpty Both sets are empty.
E Disjoint Both sets are not empty and don't overlap.
E Overlap The overlap of two sets is not empty and strict subset of both.
E Subset Both sets are not empty and the left set is strict subset of the right.
E Superset Both sets are not empty and the left set is strict superset of the right.
E Equal Two nonempty sets are equal.