# File lib/rbrainz/model/collection.rb, line 74
      def +(other_collection)
        new_collection = Collection.new
        (self.to_a + other_collection.to_a).each do |entry|
          new_collection << entry
        end
        return new_collection
      end