| 58 | explicit EIGEN_STRONG_INLINE ArrayWrapper(ExpressionType& matrix) : m_expression(matrix) {} |
| 59 | |
| 60 | EIGEN_DEVICE_FUNC |
| 61 | inline Index rows() const { return m_expression.rows(); } |
| 62 | EIGEN_DEVICE_FUNC |
| 63 | inline Index cols() const { return m_expression.cols(); } |
| 64 | EIGEN_DEVICE_FUNC |