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