SyntaxFix
Write A Post
Hire A Developer
Questions
The following creates a generic function, taking an array of any size and of any type by reference:
template<typename T, std::size_t S> void my_func(T (&arr)[S]) { // do stuff }
play with the code.