# File lib/rubygame/rect.rb, line 477
        def collide_array(array_rects)
                for i in (0...(array_rects.length))
                        if array_rects[i].collide_rect?(self)
                                return i
                        end
                end
                return nil
        end