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