/// <summary>
 /// Determines whether the current set is a subset 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 subset of other; otherwise, false.</returns>
 public bool IsSubsetOf(IEnumerable <T> other)
 {
     return(ImmutableHashSet <T> .IsSubsetOf(other, this.Origin));
 }