# File lib/backports/1.9.2/stdlib/matrix.rb, line 774 def eql?(other) return false unless Matrix === other && column_size == other.column_size # necessary for empty matrices rows.eql? other.rows end