Esempio n. 1
0
 /// <inheritdoc />
 public void SymmetricExceptWith(IEnumerable <TBase> other) => SetUtilities.SymmetricExceptWith(this, other);
Esempio n. 2
0
 /// <inheritdoc />
 public void UnionWith(IEnumerable <TBase> other) => SetUtilities.UnionWith(this, other);
Esempio n. 3
0
 /// <inheritdoc />
 public bool Overlaps(IEnumerable <TBase> other) => SetUtilities.Overlaps(this, other);
Esempio n. 4
0
 /// <inheritdoc />
 public bool SetEquals(IEnumerable <TBase> other) => SetUtilities.SetEquals(this, other);
Esempio n. 5
0
 /// <inheritdoc />
 public void IntersectWith(IEnumerable <TBase> other) => SetUtilities.IntersectWith(this, other);
Esempio n. 6
0
 /// <inheritdoc />
 public bool IsSupersetOf(IEnumerable <TBase> other) => SetUtilities.IsSupersetOf(this, other);
 /// <inheritdoc />
 public bool IsSubsetOf(IEnumerable <T> other) => SetUtilities.IsSubsetOf(this, other);
Esempio n. 8
0
 /// <inheritdoc />
 public void ExceptWith(IEnumerable <TBase> other) => SetUtilities.ExceptWith(this, other);
Esempio n. 9
0
 /// <inheritdoc />
 public void UnionWith(IEnumerable <T> other)
 {
     SetUtilities.UnionWith(this, other);
 }
 /// <inheritdoc />
 public bool IsProperSupersetOf(IEnumerable <T> other) => SetUtilities.IsProperSupersetOf(this, other);
Esempio n. 11
0
 /// <inheritdoc />
 public bool SetEquals(IEnumerable <T> other)
 {
     return(SetUtilities.SetEquals(this, other));
 }
Esempio n. 12
0
 /// <inheritdoc />
 public bool Overlaps(IEnumerable <T> other)
 {
     return(SetUtilities.Overlaps(this, other));
 }
Esempio n. 13
0
 /// <inheritdoc />
 public bool IsSupersetOf(IEnumerable <T> other)
 {
     return(SetUtilities.IsSupersetOf(this, other));
 }
Esempio n. 14
0
 /// <inheritdoc />
 public void IntersectWith(IEnumerable <T> other)
 {
     SetUtilities.IntersectWith(this, other);
 }
Esempio n. 15
0
 /// <inheritdoc />
 public void ExceptWith(IEnumerable <T> other)
 {
     SetUtilities.ExceptWith(this, other);
 }