Matrix.this

Matrix default constructor. It receives a bunch of values in amount of product of matrix lines and columns.

struct Matrix(size_t Lines, size_t Cols, Type = float)
@trusted pure nothrow
this
(
in Type[Cols * Lines] values...
)
if (
Lines > 0 &&
Cols > 0
)

Meta