Ejemplo n.º 1
0
 public Hash_Set <TKey> SymetricExcept(Hash_Set <TKey> other)
 {
     return(this.UnionWith(other).Except(this.IntersectWith(other)));
 }
Ejemplo n.º 2
0
 public Hash_Set <TKey> IntersectWith(Hash_Set <TKey> other)
 {
     return(new Hash_Set <TKey>(this.table.Where(x => other.Contains(x.Key))));
 }
Ejemplo n.º 3
0
 public Hash_Set <TKey> Except(Hash_Set <TKey> other)
 {
     return(new Hash_Set <TKey>(this.table.Where(x => !other.Contains(x.Key))));
 }
Ejemplo n.º 4
0
 public Hash_Set <TKey> UnionWith(Hash_Set <TKey> other)
 {
     return(new Hash_Set <TKey>(other.table.Concat(this.table).Distinct()));
 }