Matrix.isFinite

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

struct Matrix(type, int rows_, int cols_)
@safe pure nothrow @property const
bool
isFinite
()
if (
(rows_ > 0) &&
(cols_ > 0)
)

Meta