13 references to RemoveAt
System.Collections.Immutable (13)
System\Collections\Immutable\ImmutableDictionary_2.HashBucket.cs (2)
236
return new HashBucket(_additionalElements.Key, _additionalElements.
RemoveAt
(indexOfRootNode));
249
return new HashBucket(_firstValue, _additionalElements.
RemoveAt
(index));
System\Collections\Immutable\ImmutableHashSet_1.HashBucket.cs (2)
223
return new HashBucket(_additionalElements.Key, _additionalElements.
RemoveAt
(indexOfRootNode));
236
return new HashBucket(_firstValue, _additionalElements.
RemoveAt
(index));
System\Collections\Immutable\ImmutableList_1.Builder.cs (2)
175
this.Root = this.Root.
RemoveAt
(index);
213
this.Root = this.Root.
RemoveAt
(index);
System\Collections\Immutable\ImmutableList_1.cs (3)
305
result = result.
RemoveAt
(index);
349
result = result.
RemoveAt
(index);
362
ImmutableList<T>.Node result = _root.
RemoveAt
(index);
System\Collections\Immutable\ImmutableList_1.Node.cs (4)
431
ImmutableList<T>.Node newRight = _right.
RemoveAt
(0);
437
ImmutableList<T>.Node newLeft = _left.
RemoveAt
(index);
442
ImmutableList<T>.Node newRight = _right.
RemoveAt
(index - _left._count - 1);
473
result = result.
RemoveAt
(startIndex);