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