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)
62_root = set._root; 316this.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; 597return new ReverseEnumerable(_root); 616return _root.IndexOf(item, _comparer); 628return _root.Contains(value, _comparer); 750_root.CopyTo(array, arrayIndex); 976_root.CopyTo(array, index); 1028return _root.GetEnumerator(); 1081ImmutableSortedSet<T>.Node result = _root; 1105ImmutableSortedSet<T>.Node result = _root; 1157if (root != _root)