예제 #1
0
 /// <summary>
 /// Determines whether the current set is a 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 IsSupersetOf(IEnumerable <T> other)
 {
     return(ImmutableHashSet <T> .IsSupersetOf(other, this.Origin));
 }