9 references to Add
System.Collections.Immutable (9)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (4)
159newRoot = newRoot.Add(item, value, out mutated); 215this.Root = this.Root.Add(item, _comparer, out mutated); 247result = result.Add(item, _comparer, out mutated); 333this.Root = this.Root.Add(item, _comparer, out _);
System\Collections\Immutable\ImmutableSortedSet_1.cs (3)
181return this.Wrap(_root.Add(value, _comparer, out _)); 1052result = result.Add(item, _comparer, out _); 1076result = result.Add(item, _comparer, out _);
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (2)
354ImmutableSortedSet<T>.Node newRight = _right!.Add(key, comparer, out mutated); 362ImmutableSortedSet<T>.Node newLeft = _left!.Add(key, comparer, out mutated);