method

eql?

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

No documentation available.

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