(parentKey: Key | null, ...values: T[])
| 333 | this.insert(parentNode?.key ?? null, index + 1, ...values); |
| 334 | }, |
| 335 | prepend(parentKey: Key | null, ...values: T[]) { |
| 336 | this.insert(parentKey, 0, ...values); |
| 337 | }, |
| 338 | append(parentKey: Key | null, ...values: T[]) { |
| 339 | if (parentKey == null) { |
| 340 | this.insert(null, items.length, ...values); |