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)
175this.Root = this.Root.RemoveAt(index); 213this.Root = this.Root.RemoveAt(index);
System\Collections\Immutable\ImmutableList_1.cs (3)
305result = result.RemoveAt(index); 349result = result.RemoveAt(index); 362ImmutableList<T>.Node result = _root.RemoveAt(index);
System\Collections\Immutable\ImmutableList_1.Node.cs (4)
431ImmutableList<T>.Node newRight = _right.RemoveAt(0); 437ImmutableList<T>.Node newLeft = _left.RemoveAt(index); 442ImmutableList<T>.Node newRight = _right.RemoveAt(index - _left._count - 1); 473result = result.RemoveAt(startIndex);