(...others)
| 1365 | } |
| 1366 | |
| 1367 | function union(...others) { |
| 1368 | const set = new InternSet(); |
| 1369 | for (const other of others) { |
| 1370 | for (const o of other) { |
| 1371 | set.add(o); |
| 1372 | } |
| 1373 | } |
| 1374 | return set; |
| 1375 | } |
| 1376 | |
| 1377 | function identity$8(x) { |
| 1378 | return x; |