# File lib/RMagick.rb, line 1570
    def eql?(other)
      is_an_image_array other
      eql = other.eql?(@images)
      begin # "other" is another ImageList
        eql &&= @scene == other.scene
      rescue NoMethodError
        # "other" is a plain Array
      end
      return eql
    end