* Inserts items into the list after the item at the given key. * * @param key - The key of the item to insert after. * @param values - The values to insert.
(key: Key, ...values: T[])
| 78 | * @param values - The values to insert. |
| 79 | */ |
| 80 | insertAfter(key: Key, ...values: T[]): void; |
| 81 | |
| 82 | /** |
| 83 | * Appends items to the list. |
no outgoing calls
no test coverage detected