Set.prototype.difference = Set.prototype._difference = function (...others) {
        return this.copy()._difference_update(...others);
    };