Flowdock
eql?(other) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/matrix.rb, line 406
  def eql?(other)
    return false unless Matrix === other
    
    other.compare_by_row_vectors(@rows, :eql?)
  end
Register or log in to add new notes.