Bug #1735

Updated by Miroslav Fidler almost 8 years ago

This should work:

<pre>
CONSOLE_APP_MAIN
{
VectorMap<int, String> h;
h(1, "one")(2, "two");

for(const auto& x : ReverseRange(~h))
DLOG(x.key << ' ' << x.value);
}
</pre>

Back