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