unordered output of an associated array of associated arrays

forkit forkit at gmail.com
Tue Jan 25 02:46:43 UTC 2022


On Tuesday, 25 January 2022 at 02:12:50 UTC, H. S. Teoh wrote:
>
> That's the *easy* way out??  Try this instead:
>
> 	aaTable.keys.sort.each!((k) {
> 		aaTable[k].keys.sort.each!((kk) {
> 			writefln("%s:%s:%s", k, kk, aaTable[k][kk]);
> 		});
> 	});
>
>
> T

surely, this is voodoo?  ;-)


More information about the Digitalmars-d-learn mailing list