Exemplo n.º 1
0
 public bool Equals(KeywordSet set) => collection == set.collection;
Exemplo n.º 2
0
 public bool IsSupersetOf(KeywordSet set) => (~collection & set.collection) == 0;
Exemplo n.º 3
0
 public bool Overlaps(KeywordSet set) => (collection & set.collection) != 0;
Exemplo n.º 4
0
 public bool IsSubsetOf(KeywordSet set) => (collection & ~set.collection) == 0;