method

eql?

v1_9_1_378 - Show latest stable - Class: Vector
eql?(other)
public

No documentation available.

# File lib/matrix.rb, line 1182
  def eql?(other)
    return false unless Vector === other
    
    other.compare_by(@elements, :eql?)
  end