# File lib/regin/collection.rb, line 30
    def +(other)
      ary = other.is_a?(self.class) ? other.internal_array : other
      self.class.new(@array + ary)
    end