method
eql?
eql?(other)
public
Hide source
# File lib/matrix.rb, line 500 def eql?(other) return false unless Matrix === other && column_size == other.column_size # necessary for empty matrices rows.eql? other.rows end