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)
97
return
_root
;
107
if (
_root
!= value)
273
public void CopyTo(T[] array) =>
_root
.CopyTo(array);
287
public void CopyTo(T[] array, int arrayIndex) =>
_root
.CopyTo(array, arrayIndex);
305
public void CopyTo(int index, T[] array, int arrayIndex, int count) =>
_root
.CopyTo(index, array, arrayIndex, count);
346
return ImmutableList<TOutput>.WrapNode(
_root
.ConvertAll(converter));
362
public bool Exists(Predicate<T> match) =>
_root
.Exists(match);
376
public T? Find(Predicate<T> match) =>
_root
.Find(match);
391
public ImmutableList<T> FindAll(Predicate<T> match) =>
_root
.FindAll(match);
406
public int FindIndex(Predicate<T> match) =>
_root
.FindIndex(match);
420
public int FindIndex(int startIndex, Predicate<T> match) =>
_root
.FindIndex(startIndex, match);
435
public int FindIndex(int startIndex, int count, Predicate<T> match) =>
_root
.FindIndex(startIndex, count, match);
449
public T? FindLast(Predicate<T> match) =>
_root
.FindLast(match);
464
public int FindLastIndex(Predicate<T> match) =>
_root
.FindLastIndex(match);
479
public int FindLastIndex(int startIndex, Predicate<T> match) =>
_root
.FindLastIndex(startIndex, match);
497
public 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);
594
return
_root
.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default);
620
return
_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);
677
public bool TrueForAll(Predicate<T> match) =>
_root
.TrueForAll(match);