Exemple #1
0
 public bool IsSupersetOf(MultiSet <T> other)
 {
     return(other.IsSubsetOf(this));
 }
Exemple #2
0
 public bool Equals(MultiSet <T> other)
 {
     return(other.IsSubsetOf(this) && this.IsSubsetOf(other));
 }