fork(1) download
  1. #include <tuple>
  2.  
  3. template <class... T> struct typelist { };
  4.  
  5. template <typename... ReturnTypes,
  6. template <typename...> class T,
  7. class ... ParameterTypes>
  8. std::tuple<ReturnTypes...> Method(T<ReturnTypes...>,
  9. const ParameterTypes & ... Parameters)
  10. {
  11. return std::tuple<ReturnTypes...>();
  12. };
  13.  
  14. int main()
  15. {
  16. using ReturnTypes = typelist<int, char>;
  17. auto t = Method(ReturnTypes{}, 10, "hello", false);
  18.  
  19. static_assert(std::is_same<decltype(t), std::tuple<int,char>>{}, "types do not match");
  20. return 0;
  21. }
  22.  
  23.  
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty