Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Except() [1/2]

Implements System.Collections.Immutable.IImmutableSet< T >.

Definition at line 1059 of file ImmutableSortedSet.cs.

1060 {
1061 Requires.NotNull(other, "other");
1062 Node node = _root;
1063 foreach (T item in other.GetEnumerableDisposable<T, Enumerator>())
1064 {
1066 }
1067 return Wrap(node);
1068 }
bool ICollection< KeyValuePair< TKey, TValue > >. Remove(KeyValuePair< TKey, TValue > keyValuePair)
static ImmutableSortedSet< T > Wrap(Node root, IComparer< T > comparer)

References System.Collections.Immutable.ImmutableSortedSet< T >._comparer, System.Collections.Immutable.ImmutableSortedSet< T >._root, System.item, System.other, System.Collections.Generic.Dictionary< TKey, TValue >.Remove(), and System.Collections.Immutable.ImmutableSortedSet< T >.Wrap().

Referenced by System.Collections.Immutable.ImmutableSortedSet< T >.Except().