* Get the fully qualified name of a type or a symbol. Can act as an intelligent type/symbol to string converter.
module myModule; struct MyStruct {} static assert(fullyQualifiedName!(const MyStruct[]) == "const(myModule.MyStruct[])");
static assert(fullyQualifiedName!fullyQualifiedName == "std.traits.fullyQualifiedName");
See Implementation
* Get the fully qualified name of a type or a symbol. Can act as an intelligent type/symbol to string converter.