Construct an iterator over the \a outerId -th row or column of \a xpr */
| 41 | public: |
| 42 | /** Construct an iterator over the \a outerId -th row or column of \a xpr */ |
| 43 | InnerIterator(const XprType &xpr, const Index &outerId) |
| 44 | : m_eval(xpr), m_iter(m_eval, outerId, xpr.innerSize()) |
| 45 | {} |
| 46 | |
| 47 | /// \returns the value of the current coefficient. |
| 48 | EIGEN_STRONG_INLINE Scalar value() const { return m_iter.value(); } |