Version: SMASH-3.2
smash::detail Namespace Reference

Functions

template<typename T >
constexpr auto type_name ()
 Get type of variable as string in a human-readable way. More...
 

Function Documentation

◆ type_name()

template<typename T >
constexpr auto smash::detail::type_name ( )
constexpr

Get type of variable as string in a human-readable way.

Template Parameters
TThe type to be returned.
Returns
A std::string containing the name of the type.

Definition at line 27 of file numeric_cast.h.

27  {
28  std::string_view name, prefix, suffix;
29 #ifdef __clang__
30  name = __PRETTY_FUNCTION__;
31  prefix = "auto smash::detail::type_name() [T = ";
32  suffix = "]";
33 #elif defined(__GNUC__)
34  name = __PRETTY_FUNCTION__;
35  prefix = "constexpr auto smash::detail::type_name() [with T = ";
36  suffix = "]";
37 #elif defined(_MSC_VER)
38  name = __FUNCSIG__;
39  prefix = "auto __cdecl smash::detail::type_name<";
40  suffix = ">(void)";
41 #else
42  name = "UNKNOWN";
43  prefix = "";
44  suffix = "";
45 #endif
46  name.remove_prefix(prefix.size());
47  name.remove_suffix(suffix.size());
48  return std::string{name};
49 }