8 writes to Root
System.Collections.Immutable (8)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (8)
160
this.
Root
= newRoot;
211
this.
Root
= this.Root.Add(item, _comparer, out mutated);
225
this.
Root
= this.Root.Remove(item, _comparer, out _);
247
this.
Root
= result;
316
this.
Root
= this.ToImmutable().SymmetricExcept(other)._root;
329
this.
Root
= this.Root.Add(item, _comparer, out _);
348
this.
Root
= ImmutableSortedSet<T>.Node.EmptyNode;
377
this.
Root
= this.Root.Remove(item, _comparer, out mutated);
11 references to Root
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (11)
74
get { return this.
Root
.Count; }
211
this.Root = this.
Root
.Add(item, _comparer, out mutated);
225
this.Root = this.
Root
.Remove(item, _comparer, out _);
329
this.Root = this.
Root
.Add(item, _comparer, out _);
358
return this.
Root
.Contains(item, _comparer);
377
this.Root = this.
Root
.Remove(item, _comparer, out mutated);
387
return this.
Root
.GetEnumerator(this);
396
return this.
Root
.GetEnumerator();
426
return this.
Root
.IndexOf(item, _comparer);
455
return _immutable ??= ImmutableSortedSet<T>.Wrap(this.
Root
, _comparer);
486
this.
Root
.CopyTo(array, arrayIndex);