コード例 #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);
 }