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