What I want is something like this:
----
string className(in Object obj) {
return obj is null ? "null" : typeid(obj).name;
}
----...except I want it to work in CTFE. What is the way to do this in D?
Nathan S. via Digitalmars-d-learn Sun, 16 Feb 2020 23:30:50 -0800
What I want is something like this:
----
string className(in Object obj) {
return obj is null ? "null" : typeid(obj).name;
}
----...except I want it to work in CTFE. What is the way to do this in D?