Page MenuHomeSoftware Heritage

union.js
No OneTemporary

union.js

import {InternSet} from "internmap";
export default function union(...others) {
const set = new InternSet();
for (const other of others) {
for (const o of other) {
set.add(o);
}
}
return set;
}

File Metadata

Mime Type
text/x-java
Expires
Jul 4 2025, 6:43 PM (5 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3298675

Event Timeline