Matrix.this

Construct this matrix directly from a series of numbers. This constructor is designed to be executed at compile time.

  1. this(ref const(Number[columnCount][rowCount]) data)
  2. this(const(Number[columnCount][rowCount]) data)
  3. this(Number[rowCount * columnCount] numbers...)
    struct Matrix(Number, size_t _rowCount, size_t _columnCount)
    @safe pure nothrow
    this
    if (
    isNumeric!Number &&
    _rowCount > 0
    &&
    _columnCount > 0
    )

Meta