* This method appends another index to the current index. * @param other - The index to append to the current index.
(other: Index<TKey, TValue>)
| 427 | * @param other - The index to append to the current index. |
| 428 | */ |
| 429 | append(other: Index<TKey, TValue>): void { |
| 430 | for (const [key, value] of other.entries()) { |
| 431 | this.addValue(key, value) |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | /** |
| 436 | * This method joins two indexes. |
no test coverage detected