Ejemplo n.º 1
0
 /// <summary>
 /// Determines whether the current set is a proper (strict) superset of a specified collection.
 /// </summary>
 /// <param name="other">The collection to compare to the current set.</param>
 /// <returns>true if the current set is a superset of other; otherwise, false.</returns>
 public bool IsProperSupersetOf(IEnumerable <T> other)
 {
     return(ImmutableHashSet <T> .IsProperSupersetOf(other, this.Origin));
 }