2 writes to _root
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableList_1.Builder.cs (2)
61_root = list._root; 113_root = value;
24 references to _root
System.Collections.Immutable (24)
System\Collections\Immutable\ImmutableList_1.Builder.cs (24)
101return _root; 111if (_root != value) 277public void CopyTo(T[] array) => _root.CopyTo(array); 291public void CopyTo(T[] array, int arrayIndex) => _root.CopyTo(array, arrayIndex); 309public void CopyTo(int index, T[] array, int arrayIndex, int count) => _root.CopyTo(index, array, arrayIndex, count); 350return ImmutableList<TOutput>.WrapNode(_root.ConvertAll(converter)); 366public bool Exists(Predicate<T> match) => _root.Exists(match); 380public T? Find(Predicate<T> match) => _root.Find(match); 395public ImmutableList<T> FindAll(Predicate<T> match) => _root.FindAll(match); 410public int FindIndex(Predicate<T> match) => _root.FindIndex(match); 424public int FindIndex(int startIndex, Predicate<T> match) => _root.FindIndex(startIndex, match); 439public int FindIndex(int startIndex, int count, Predicate<T> match) => _root.FindIndex(startIndex, count, match); 453public T? FindLast(Predicate<T> match) => _root.FindLast(match); 468public int FindLastIndex(Predicate<T> match) => _root.FindLastIndex(match); 483public int FindLastIndex(int startIndex, Predicate<T> match) => _root.FindLastIndex(startIndex, match); 501public int FindLastIndex(int startIndex, int count, Predicate<T> match) => _root.FindLastIndex(startIndex, count, match); 522_root.IndexOf(item, index, this.Count - index, EqualityComparer<T>.Default); 546_root.IndexOf(item, index, count, EqualityComparer<T>.Default); 574_root.IndexOf(item, index, count, equalityComparer); 598return _root.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default); 624return _root.LastIndexOf(item, startIndex, startIndex + 1, EqualityComparer<T>.Default); 645_root.LastIndexOf(item, startIndex, count, EqualityComparer<T>.Default); 666_root.LastIndexOf(item, startIndex, count, equalityComparer); 681public bool TrueForAll(Predicate<T> match) => _root.TrueForAll(match);