| 931 | template<typename Derived> |
| 932 | template<typename DenseDerived> |
| 933 | void TriangularBase<Derived>::evalToLazy(MatrixBase<DenseDerived> &other) const |
| 934 | { |
| 935 | other.derived().resize(this->rows(), this->cols()); |
| 936 | internal::call_triangular_assignment_loop<Derived::Mode,(Derived::Mode&SelfAdjoint)==0 /* SetOpposite */>(other.derived(), derived().nestedExpression()); |
| 937 | } |
| 938 | |
| 939 | namespace internal { |
| 940 |
nothing calls this directly
no test coverage detected