Matrix.this

Construct a Matrix from a single value

  1. this(Args args)
  2. this(T mat)
  3. this(T mat)
  4. this(valueType value)
    struct Matrix(type, int numCols, int numRows)
    @safe pure nothrow
    this
    ()
    if (
    (numCols > 1) &&
    (numRows > 1)
    )

Meta