7 references to Remove
System.Collections.Immutable (7)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (2)
229this.Root = this.Root.Remove(item, _comparer, out _); 381this.Root = this.Root.Remove(item, _comparer, out mutated);
System\Collections\Immutable\ImmutableSortedSet_1.cs (2)
189return this.Wrap(_root.Remove(value, _comparer, out _)); 250result = result.Remove(item, _comparer, out mutated);
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (3)
429ImmutableSortedSet<T>.Node newRight = _right.Remove(successor._key, comparer, out _); 435ImmutableSortedSet<T>.Node newLeft = _left.Remove(key, comparer, out mutated); 443ImmutableSortedSet<T>.Node newRight = _right.Remove(key, comparer, out mutated);