| 54 | typedef typename internal::nested<ExpressionType>::type NestedExpressionType; |
| 55 | |
| 56 | inline ArrayWrapper(ExpressionType& matrix) : m_expression(matrix) {} |
| 57 | |
| 58 | inline Index rows() const { return m_expression.rows(); } |
| 59 | inline Index cols() const { return m_expression.cols(); } |
nothing calls this directly
no outgoing calls
no test coverage detected