MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / arrayCast

Function arrayCast

Sources/Shared/Containers/StaticArray.h:699–701  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

staticArrayViewFunction · 0.70

Tested by

no test coverage detected