2 writes to _root
System.Collections.Immutable (2)
System\Collections\Immutable\ImmutableList_1.Builder.cs (2)
57_root = list._root; 109_root = value;
24 references to _root
System.Collections.Immutable (24)
System\Collections\Immutable\ImmutableList_1.Builder.cs (24)
97return _root; 107if (_root != value) 273public void CopyTo(T[] array) => _root.CopyTo(array); 287public void CopyTo(T[] array, int arrayIndex) => _root.CopyTo(array, arrayIndex); 305public void CopyTo(int index, T[] array, int arrayIndex, int count) => _root.CopyTo(index, array, arrayIndex, count); 346return ImmutableList<TOutput>.WrapNode(_root.ConvertAll(converter)); 362public bool Exists(Predicate<T> match) => _root.Exists(match); 376public T? Find(Predicate<T> match) => _root.Find(match); 391public ImmutableList<T> FindAll(Predicate<T> match) => _root.FindAll(match); 406public int FindIndex(Predicate<T> match) => _root.FindIndex(match); 420public int FindIndex(int startIndex, Predicate<T> match) => _root.FindIndex(startIndex, match); 435public int FindIndex(int startIndex, int count, Predicate<T> match) => _root.FindIndex(startIndex, count, match); 449public T? FindLast(Predicate<T> match) => _root.FindLast(match); 464public int FindLastIndex(Predicate<T> match) => _root.FindLastIndex(match); 479public int FindLastIndex(int startIndex, Predicate<T> match) => _root.FindLastIndex(startIndex, match); 497public int FindLastIndex(int startIndex, int count, Predicate<T> match) => _root.FindLastIndex(startIndex, count, match); 518_root.IndexOf(item, index, this.Count - index, EqualityComparer<T>.Default); 542_root.IndexOf(item, index, count, EqualityComparer<T>.Default); 570_root.IndexOf(item, index, count, equalityComparer); 594return _root.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default); 620return _root.LastIndexOf(item, startIndex, startIndex + 1, EqualityComparer<T>.Default); 641_root.LastIndexOf(item, startIndex, count, EqualityComparer<T>.Default); 662_root.LastIndexOf(item, startIndex, count, equalityComparer); 677public bool TrueForAll(Predicate<T> match) => _root.TrueForAll(match);