method

init_rows

v1_8_7_330 - Show latest stable - Class: Matrix
init_rows(rows, copy)
private

No documentation available.

# File lib/matrix.rb, line 252
  def init_rows(rows, copy)
    if copy
      @rows = rows.collect{|row| row.dup}
    else
      @rows = rows
    end
    self
  end