Symbol whose type to get the string representation of.
The string representation of the type.
static struct Foo {} Foo foo; int i; alias n = int; static assert(stringOfTypeOf!foo == "Foo"); static assert(stringOfTypeOf!i == "int"); static assert(stringOfTypeOf!n == "int");
The string representation of the type of something. Alias parameter overload.