Matrix.opAssign

only: if( isDynamic )

struct Matrix(size_t H, size_t W, E)
pure ref
static if(isDynamic)
typeof(this)
opAssign
(
size_t bH
size_t bW
X
)
(
in Matrix!(bH, bW, X) b
)
if (
allowSomeOp(H, bH) &&
allowSomeOp(W, bW)
&&
is(typeof(E(X.init)))
)

Meta