each(&block)
Iterate over the elements of this vector
# File lib/matrix.rb, line 1290 def each(&block) return to_enum(:each) unless block_given? @elements.each(&block) self end