# File lib/RMagick.rb, line 1024
    def is_a_image_array(ary)
        unless ary.respond_to? :each
            raise ArgumentError, "Magick::ImageList or array of Magick::Images required (#{ary.class} given)"
        end
        ary.each { |obj| is_a_image obj }
        true
    end