(data: MultiSetArray<T> = [])
| 15 | #inner: MultiSetArray<T> |
| 16 | |
| 17 | constructor(data: MultiSetArray<T> = []) { |
| 18 | this.#inner = data |
| 19 | } |
| 20 | |
| 21 | toString(indent = false): string { |
| 22 | return `MultiSet(${JSON.stringify(this.#inner, null, indent ? 2 : undefined)})` |
nothing calls this directly
no outgoing calls
no test coverage detected