On 17 October 2013 11:47, DDD <dcb854d0bfb1@f98b7c56a69c.anonbox.net> wrote:
Does D have any reflection/introspection?

I'd like to do something like this

class Contact
{
string first, last
int number
}

contact = json_deserialized!Contact(json_string);

Is something like that possible?

Yes, there is quite thorough reflection in D. Serialisers are plentiful.