MCPcopy Create free account
hub / github.com/TinyMPC/TinyMPC / InnerIterator

Method InnerIterator

include/Eigen/Eigen/src/Core/CoreIterators.h:43–45  ·  view source on GitHub ↗

Construct an iterator over the \a outerId -th row or column of \a xpr */

Source from the content-addressed store, hash-verified

41public:
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(); }

Callers

nothing calls this directly

Calls 1

innerSizeMethod · 0.45

Tested by

no test coverage detected