xieite ::name ()
Defined in header <xieite/meta/name.hpp>
Returns the name of a type or value as a string by extracting it from
__PRETTY_FUNCTION__
or __FUNCSIG__
.Does not perform any additional string processing, so the output is entirely compiler-dependent.
Declaration
#0Returns the name of a type.template <typename T > [[nodiscard ]]consteval std ::string_view name ()noexcept ;
#1
Returns the string representation of a value.template <auto x > [[nodiscard ]]consteval std ::string_view name ()noexcept ;
Example
Possible output:int main () {xieite ::dump (xieite ::name <std ::vector <int >>()); }
[View in Compiler Explorer]std::vector<int>