4 references to Insert
System.Collections.Immutable (4)
System\Collections\Immutable\ImmutableList_1.Builder.cs (1)
178this.Root = this.Root.Insert(index, item);
System\Collections\Immutable\ImmutableList_1.cs (1)
269return this.Wrap(_root.Insert(index, item));
System\Collections\Immutable\ImmutableList_1.Node.cs (2)
334Node newLeft = _left.Insert(index, key); 340Node newRight = _right!.Insert(index - _left._count - 1, key);