| 213 | /** Copy constructor with in-place evaluation */ |
| 214 | template<typename OtherDerived> |
| 215 | EIGEN_STRONG_INLINE Array(const ReturnByValue<OtherDerived>& other) |
| 216 | { |
| 217 | Base::_check_template_params(); |
| 218 | Base::resize(other.rows(), other.cols()); |
| 219 | other.evalTo(*this); |
| 220 | } |
| 221 | |
| 222 | /** \sa MatrixBase::operator=(const EigenBase<OtherDerived>&) */ |
| 223 | template<typename OtherDerived> |