struct Matrix(Number, size_t _rowCount, size_t _columnCount)
@safe pure nothrow const
opBinary
(
string op
OtherNumber
size_t otherRowCount
size_t otherColumnCount
)
(ref const(Matrix!(OtherNumber, otherRowCount, otherColumnCount)) other ) if (
!
is(
Number ==
OtherNumber)
&&
)
if (
isNumeric!Number &&
_rowCount > 0
&&
_columnCount > 0
)