Thomas Oberbichler
Results
3
issues of
Thomas Oberbichler
Is it save to implement slicing operations as methods inside the matrix class? **Example:** ```c++ MatrixRow row(std::size_t i) { return MatrixRow(*this, i); } ``` It would also be nice (from...