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