| 51 | using value_type = typename std::remove_reference_t<Matrix>::value_type; |
| 52 | |
| 53 | explicit LowerUnitTriangular(Matrix&& matrix): matrix(std::forward<Matrix>(matrix)) { } |
| 54 | |
| 55 | UNO_FORWARD_ACCESSOR(get_matrix, this->matrix) |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected