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

#0
template<typename T>
[[nodiscard]] consteval std::string_view name() noexcept;
Returns the name of a type.

#1
template<auto x>
[[nodiscard]] consteval std::string_view name() noexcept;
Returns the string representation of a value.


Example

int main() {
	xieite::dump(xieite::name<std::vector<int>>());
}
Possible output:
std::vector<int>
[View in Compiler Explorer]