| 749 | Convenience alternative to converting to an @ref ArrayView explicitly. |
| 750 | */ |
| 751 | template<class T, class D> inline ArrayView<T> arrayView(Array<T, D>& array) { |
| 752 | return ArrayView<T>{array}; |
| 753 | } |
| 754 | |
| 755 | /** @relatesalso ArrayView |
| 756 | @brief Make a view on a const @ref Array |
no outgoing calls
no test coverage detected