| 164 | EIGEN_STRONG_INLINE void cleanup() { impl_.cleanup(); } |
| 165 | |
| 166 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType |
| 167 | coeff(Index index) const { |
| 168 | eigen_assert(index < dimensions().TotalSize()); |
| 169 | const Index input_index = ToInputIndex(index); |
| 170 | return impl_.coeff(input_index); |
| 171 | } |
| 172 | |
| 173 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType |
| 174 | coeff(array<Index, Dims> coords) const { |