Hacker News new | ask | show | jobs
by fenesiistvan 3782 days ago
I am used with the old Delphi / C++ Builder style. I think that it is much more clear than than bot the STL and the new trendy C11 style.

So my hashmap handling looks like this:

MHashMap userlist = new MHashMap<HUser>();

HUser *user = userlist->First();

while(user) { user->DoSomething(); user = userlist->Next(); }