Mat.this - multiple declarations

Function Mat.this

Build a matrix from its elements. To be provided row major.

this(Args...) (
  in Args args
)
if (Args.length == R * C && allSatisfy!(isNumeric, Args) && isImplicitlyConvertible!(CommonType!Args, T));

Function Mat.this

Build a matrix from the provided rows. Each row must be an array (static or dynamic) and have the correct number of elements.

this(Args...) (
  in Args args
)
if (Args.length == rowLength && allSatisfy!(isArray, Args));

this(Args...) (
  in Args args
)
if (Args.length == rowLength && allSatisfy!(isVec, Args));