| 118 | Matrix operator+(const ::Matrix& matrix) { return ::MatrixAdd(*this, matrix); } |
| 119 | |
| 120 | Matrix Subtract(const ::Matrix& right) { return ::MatrixSubtract(*this, right); } |
| 121 | |
| 122 | Matrix operator-(const ::Matrix& matrix) { return ::MatrixSubtract(*this, matrix); } |
| 123 |
nothing calls this directly
no outgoing calls
no test coverage detected