* Inserts items into the list before the item at the given key. * * @param key - The key of the item to insert before. * @param values - The values to insert.
(key: Key, ...values: T[])
| 70 | * @param values - The values to insert. |
| 71 | */ |
| 72 | insertBefore(key: Key, ...values: T[]): void; |
| 73 | |
| 74 | /** |
| 75 | * Inserts items into the list after the item at the given key. |
no outgoing calls
no test coverage detected