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