method
eql?
v2_2_9 -
Show latest stable
- Class:
Matrix
eql?(other)public
No documentation available.
# File lib/matrix.rb, line 919
def eql?(other)
return false unless Matrix === other &&
column_count == other.column_count # necessary for empty matrices
rows.eql? other.rows
end