method
eql?
v1_9_1_378 -
Show latest stable
- Class:
Matrix
eql?(other)public
No documentation available.
# File lib/matrix.rb, line 406
def eql?(other)
return false unless Matrix === other
other.compare_by_row_vectors(@rows, :eql?)
end