(indent = false)
| 19 | } |
| 20 | |
| 21 | toString(indent = false): string { |
| 22 | return `MultiSet(${JSON.stringify(this.#inner, null, indent ? 2 : undefined)})` |
| 23 | } |
| 24 | |
| 25 | toJSON(): string { |
| 26 | return JSON.stringify(Array.from(this.getInner())) |
nothing calls this directly
no outgoing calls
no test coverage detected