Matrix.ok

Returns true if all values are not nan and finite, otherwise false.

struct Matrix(type, int numCols, int numRows)
@safe pure nothrow @property const
bool
ok
()
if (
(numCols > 1) &&
(numRows > 1)
)

Meta