\returns the row index of the current coefficient.
| 52 | EIGEN_STRONG_INLINE Index index() const { return m_iter.index(); } |
| 53 | /// \returns the row index of the current coefficient. |
| 54 | EIGEN_STRONG_INLINE Index row() const { return m_iter.row(); } |
| 55 | /// \returns the column index of the current coefficient. |
| 56 | EIGEN_STRONG_INLINE Index col() const { return m_iter.col(); } |
| 57 | /// \returns \c true if the iterator \c *this still references a valid coefficient. |
no outgoing calls