13 references to RemoveAt
System.Collections.Immutable (13)
System\Collections\Immutable\ImmutableDictionary_2.HashBucket.cs (2)
236return new HashBucket(_additionalElements.Key, _additionalElements.RemoveAt(indexOfRootNode)); 249return new HashBucket(_firstValue, _additionalElements.RemoveAt(index));
System\Collections\Immutable\ImmutableHashSet_1.HashBucket.cs (2)
223return new HashBucket(_additionalElements.Key, _additionalElements.RemoveAt(indexOfRootNode)); 236return new HashBucket(_firstValue, _additionalElements.RemoveAt(index));
System\Collections\Immutable\ImmutableList_1.Builder.cs (2)
186this.Root = this.Root.RemoveAt(index); 224this.Root = this.Root.RemoveAt(index);
System\Collections\Immutable\ImmutableList_1.cs (3)
314result = result.RemoveAt(index); 358result = result.RemoveAt(index); 371ImmutableList<T>.Node result = _root.RemoveAt(index);
System\Collections\Immutable\ImmutableList_1.Node.cs (4)
451ImmutableList<T>.Node newRight = _right.RemoveAt(0); 457ImmutableList<T>.Node newLeft = _left.RemoveAt(index); 462ImmutableList<T>.Node newRight = _right.RemoveAt(index - _left._count - 1); 493result = result.RemoveAt(startIndex);