* Inserts items into the list at the given index. * * @param index - The index to insert into. * @param values - The values to insert.
(index: number, ...values: T[])
| 62 | * @param values - The values to insert. |
| 63 | */ |
| 64 | insert(index: number, ...values: T[]): void; |
| 65 | |
| 66 | /** |
| 67 | * Inserts items into the list before the item at the given key. |
no outgoing calls