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