method
init_rows
ruby latest stable - Class:
Matrix
init_rows(rows, copy)private
No documentation available.
# File lib/matrix.rb, line 247
def init_rows(rows, copy)
if copy
@rows = rows.collect{|row| row.dup}
else
@rows = rows
end
self
end