(json: string)
| 27 | } |
| 28 | |
| 29 | static fromJSON<U>(json: string): MultiSet<U> { |
| 30 | return new MultiSet(JSON.parse(json)) |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Apply a function to all records in the collection. |
nothing calls this directly
no outgoing calls
no test coverage detected