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