# File lib/extras/as_rectarray.rb, line 44 def insertInto(row, col, arr) for i in 0...(arr.rows) for j in 0...(arr.cols) self[i + row, j + col] = arr[i,j] end end end