auto a = {"foo":12, "bar":"twelve"};int a_foo = a.foo; string a_bar = a[1]; The std.typecons Tuple!() can do this kind of thing too.
auto a = {"foo":12, "bar":"twelve"};int a_foo = a.foo; string a_bar = a[1]; The std.typecons Tuple!() can do this kind of thing too.