Explore >> Select a destination


You are here

isocpp.org
| | rodusek.com
4.1 parsecs away

Travel
| | Getting the name of a type in C++ is a hassle. For something that should be trivially known by the compiler at compile-time, the closest thing we have to getting the type in a cross-platform way is to use std::type_info::name which is neither at compile-time, nor is it guaranteed to be human-readable. In fact, both GCC and Clang actually return the compiler's mangled name rather than the human-readable name we are used to. Let's try to make something better using the modern utilities from c++17 and a little creative problem solving!
| | 0xd34df00d.me
5.2 parsecs away

Travel
| |
| | mpark.github.io
5.2 parsecs away

Travel
| | Can we work around the limitations of non-type template parameters?
| | www.fluentcpp.com
27.8 parsecs away

Travel
| Do you know how to partially specialize all the kinds of templates in C++? Check out this post for how to do it while keeping your code clear.