each_with_index(which = :all)
Instance Public methods
Same as each, but the row index and column index in addition to the element
1 2 3 4 5 6 7 8 | Matrix[ [ 1 , 2 ], [ 3 , 4 ] ].each_with_index do |e, row, col| puts "#{e} at #{row}, #{col}" end # => Prints: # 1 at 0, 0 # 2 at 0, 1 # 3 at 1, 0 # 4 at 1, 1 |
Please login to continue.