2 writes to _root
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableSortedSet_1.cs (2)
57
_root
= Node.EmptyNode;
72
_root
= root;
22 references to _root
System.Collections.Immutable (22)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (2)
66
_root = set.
_root
;
320
this.Root = this.ToImmutable().SymmetricExcept(other).
_root
;
System\Collections\Immutable\ImmutableSortedSet_1.cs (20)
81
return
_root
.IsEmpty ? this : Empty.WithComparer(_comparer);
90
get { return
_root
.Max; }
99
get { return
_root
.Min; }
109
get { return
_root
.IsEmpty; }
117
get { return
_root
.Count; }
141
return
_root
.ItemRef(index);
152
return ref
_root
.ItemRef(index);
181
return this.Wrap(
_root
.Add(value, _comparer, out _));
189
return this.Wrap(
_root
.Remove(value, _comparer, out _));
206
Node searchResult =
_root
.Search(equalValue, _comparer);
246
ImmutableSortedSet<T>.Node result =
_root
;
565
return new ReverseEnumerable(
_root
);
584
return
_root
.IndexOf(item, _comparer);
596
return
_root
.Contains(value, _comparer);
718
_root
.CopyTo(array, arrayIndex);
944
_root
.CopyTo(array, index);
996
return
_root
.GetEnumerator();
1049
ImmutableSortedSet<T>.Node result =
_root
;
1073
ImmutableSortedSet<T>.Node result =
_root
;
1089
if (root !=
_root
)