= private = protected
==(other)
Returns true if and only if the two matrices contain equal elements.
# File lib/matrix.rb, line 767 def ==(other) return false unless Matrix === other && column_count == other.column_count # necessary for empty matrices rows == other.rows end