On Friday, 3 January 2014 at 17:47:43 UTC, bearophile wrote:
    string[] r = aa.byKey.map!(k => [k, aa[k]]).join;

However the [k, aa[k]] expression will allocate an array for each key you iterate over regardless if you use join or joiner. I posted a solution with "only", hope that works. :)

Reply via email to