method
eql?
eql?(other)
public
Hide source
# File lib/matrix.rb, line 406 def eql?(other) return false unless Matrix === other other.compare_by_row_vectors(@rows, :eql?) end