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