Last active
June 10, 2022 20:35
-
-
Save stevemk14ebr/41e811fb59828b778e5d13ab0442f7cb to your computer and use it in GitHub Desktop.
C++ typedef args to typeid list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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