Matrix.this

Copy constructor for a matrix; creates a copy of the given matrix

  1. this(T[][] elements)
  2. this(T[columns][rows] elements)
  3. this(T element)
  4. this()
  5. this(Matrix!(T, rows, columns) toCopy)
    class Matrix(T, uint rows, uint columns)
    this
    (
    Matrix!(T, rows, columns) toCopy
    )

Meta