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