6 references to Remove
System.Collections.Immutable (6)
System\Collections\Immutable\ImmutableSortedDictionary_2.Builder.cs (1)
454
this.Root = this.Root.
Remove
(key, _keyComparer, out mutated);
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (2)
291
ImmutableSortedDictionary<TKey, TValue>.Node result = _root.
Remove
(value, _keyComparer, out _);
307
ImmutableSortedDictionary<TKey, TValue>.Node newResult = result.
Remove
(key, _keyComparer, out mutated);
System\Collections\Immutable\ImmutableSortedDictionary_2.Node.cs (3)
723
ImmutableSortedDictionary<TKey, TValue>.Node newRight = _right.
Remove
(successor._key, keyComparer, out _);
729
ImmutableSortedDictionary<TKey, TValue>.Node newLeft = _left.
Remove
(key, keyComparer, out mutated);
737
ImmutableSortedDictionary<TKey, TValue>.Node newRight = _right.
Remove
(key, keyComparer, out mutated);