* Concatenate two collections together.
(other: MultiSet<T>)
| 59 | * Concatenate two collections together. |
| 60 | */ |
| 61 | concat(other: MultiSet<T>): MultiSet<T> { |
| 62 | const out: MultiSetArray<T> = [] |
| 63 | chunkedArrayPush(out, this.#inner) |
| 64 | chunkedArrayPush(out, other.getInner()) |
| 65 | return new MultiSet(out) |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Produce as output a collection that is logically equivalent to the input |
no test coverage detected