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)
101
return
_root
;
111
if (
_root
!= value)
277
public void CopyTo(T[] array) =>
_root
.CopyTo(array);
291
public void CopyTo(T[] array, int arrayIndex) =>
_root
.CopyTo(array, arrayIndex);
309
public void CopyTo(int index, T[] array, int arrayIndex, int count) =>
_root
.CopyTo(index, array, arrayIndex, count);
350
return ImmutableList<TOutput>.WrapNode(
_root
.ConvertAll(converter));
366
public bool Exists(Predicate<T> match) =>
_root
.Exists(match);
380
public T? Find(Predicate<T> match) =>
_root
.Find(match);
395
public ImmutableList<T> FindAll(Predicate<T> match) =>
_root
.FindAll(match);
410
public int FindIndex(Predicate<T> match) =>
_root
.FindIndex(match);
424
public int FindIndex(int startIndex, Predicate<T> match) =>
_root
.FindIndex(startIndex, match);
439
public int FindIndex(int startIndex, int count, Predicate<T> match) =>
_root
.FindIndex(startIndex, count, match);
453
public T? FindLast(Predicate<T> match) =>
_root
.FindLast(match);
468
public int FindLastIndex(Predicate<T> match) =>
_root
.FindLastIndex(match);
483
public int FindLastIndex(int startIndex, Predicate<T> match) =>
_root
.FindLastIndex(startIndex, match);
501
public 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);
598
return
_root
.LastIndexOf(item, this.Count - 1, this.Count, EqualityComparer<T>.Default);
624
return
_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);
681
public bool TrueForAll(Predicate<T> match) =>
_root
.TrueForAll(match);