= private = protected
==(other)
Returns true iff the two vectors have the same elements in the same order.
# File lib/matrix.rb, line 1860 def ==(other) return false unless Vector === other @elements == other.elements end