| 697 | See @ref arrayCast(StaticArrayView<size, T>) for more information. |
| 698 | */ |
| 699 | template<class U, std::size_t size, class T> StaticArrayView<size * sizeof(T) / sizeof(U), U> arrayCast(StaticArray<size, T>& array) { |
| 700 | return arrayCast<U>(staticArrayView(array)); |
| 701 | } |
| 702 | |
| 703 | /** @overload */ |
| 704 | template<class U, std::size_t size, class T> StaticArrayView<size * sizeof(T) / sizeof(U), const U> arrayCast(const StaticArray<size, T>& array) { |
nothing calls this directly
no test coverage detected