| 765 | @brief Reinterpret-cast an array |
| 766 | */ |
| 767 | template<class U, class T, class D> inline ArrayView<U> arrayCast(Array<T, D>& array) { |
| 768 | return arrayCast<U>(arrayView(array)); |
| 769 | } |
| 770 | |
| 771 | /** @overload */ |
| 772 | template<class U, class T, class D> inline ArrayView<const U> arrayCast(const Array<T, D>& array) { |
nothing calls this directly
no test coverage detected