Skip to content

Instantly share code, notes, and snippets.

@stevemk14ebr
Last active June 10, 2022 20:35
Show Gist options
  • Save stevemk14ebr/41e811fb59828b778e5d13ab0442f7cb to your computer and use it in GitHub Desktop.
Save stevemk14ebr/41e811fb59828b778e5d13ab0442f7cb to your computer and use it in GitHub Desktop.
C++ typedef args to typeid list
#include <iostream>
#include <typeinfo>
#include <typeindex>
#include <span>
typedef int (*tExample) (int a, bool b, char* c, long long d);
template<typename T>
struct arg_types {};
template<typename R, typename... A>
struct arg_types<R(*)(A...)> {
inline static const std::type_index value[] = {typeid(A)...};
};
template<typename T>
static constexpr std::span<const std::type_index> arg_types_v = arg_types<T>::value;
int main()
{
auto vec = arg_types_v<tExample>;
for (const auto& t : vec)
{
std::cout << t.hash_code() << std::endl;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment