Set.prototype.union = Set.prototype._union = function (...others) {
        return this.copy()._update(...others);
    };