/// <inheritdoc />
 public bool IsSupersetOf(IEnumerable <TBase> other) => SetUtilities.IsSupersetOf(this, other);
示例#2
0
 /// <inheritdoc />
 public bool IsSupersetOf(IEnumerable <T> other)
 {
     return(SetUtilities.IsSupersetOf(this, other));
 }