9 references to Add
System.Collections.Immutable (9)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (4)
155
newRoot = newRoot.
Add
(item, value, out mutated);
211
this.Root = this.Root.
Add
(item, _comparer, out mutated);
243
result = result.
Add
(item, _comparer, out mutated);
329
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);