Matrix.copyInto

Copy Matrix values into target Matrix of any dimensions. If dimensions are not the same, the values at non-overlapping indices are ignored.

struct Matrix(T, uint numColumns, uint numRows = numColumns)
ref const
copyInto
(
uint C
uint R
)
(
ref return Matrix!(T, C, R) target
)
if (
numColumns > 0 &&
numRows > 0
)

Meta