method

init_rows

ruby latest stable - Class: Matrix

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.

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