| 322 | /** \returns an \link Eigen::ArrayBase Array \endlink expression of this matrix |
| 323 | * \sa ArrayBase::matrix() */ |
| 324 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE ArrayWrapper<Derived> array() { return ArrayWrapper<Derived>(derived()); } |
| 325 | /** \returns a const \link Eigen::ArrayBase Array \endlink expression of this matrix |
| 326 | * \sa ArrayBase::matrix() */ |
| 327 | EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const ArrayWrapper<const Derived> array() const { return ArrayWrapper<const Derived>(derived()); } |
no outgoing calls
no test coverage detected