AUI Framework
master
Cross-platform base for C++ UI apps
|
without | with |
template<typename Arg, typename... Args> void helperFunc(Arg&& arg, Args&&... args) {
// do something with arg
std::cout << std::forward<Arg>(arg) << std::endl;
if constexpr (sizeof...(args) > 0) {
helperFunc(std::forward<Args>(args)...); // continue iteration
}
}
helperFunc(std::forward<Args>(args)...);
}
API_AUI_CORE const ACommandLineArgs & args() noexcept |
Typedefs# | |
template<typename... Types> | |
using | first = typename impl::first<Types...>::type |