On 10/21/22 6:03 PM, Kevin Bailey wrote:
I'm trying to do this equivalent C++:

     unordered_map<string, int> map;

     for (auto i = map.find(something); i != map.end(); ++i)
         ...do something with i...

in D, but obviously with an associative array. It seems that it's quite
easy to iterate through the whole "map", but not start from the middle.
Am I missing something obvious (or not so obvious) ?


What you are missing is that it's something that provides almost no value.

A question to answer is *why* you want to iterate an "unordered" map from the middle?

-Steve

Reply via email to