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