(sets)
| 42 | } |
| 43 | |
| 44 | static union(sets) { |
| 45 | sets = Collection(sets).toArray(); |
| 46 | return sets.length |
| 47 | ? SetPrototype.union.apply(Set(sets.pop()), sets) |
| 48 | : emptySet(); |
| 49 | } |
| 50 | |
| 51 | toString() { |
| 52 | return this.__toString('Set {', '}'); |
nothing calls this directly
no test coverage detected