addAll: function(otherSet) {
        var self = this;
        otherSet.forEach(function(item) {
            self.add(item);
        });