コード例 #1
0
 public bool Equals(KeywordSet set) => collection == set.collection;
コード例 #2
0
 public bool IsSupersetOf(KeywordSet set) => (~collection & set.collection) == 0;
コード例 #3
0
 public bool Overlaps(KeywordSet set) => (collection & set.collection) != 0;
コード例 #4
0
 public bool IsSubsetOf(KeywordSet set) => (collection & ~set.collection) == 0;