Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there anything like a map or a hashtable in Delphi 6?

Tags:

delphi

Is there any kind of native map implementation in delphi 6 (map keys to values and objects) - the internet has been of no help so far. I just got a delphi project dumped on my, my background is c++ and java, and the previous dev of the delphi project does all the searching linearly.

Thanks.

like image 697
LoudNPossiblyWrong Avatar asked May 19 '10 13:05

LoudNPossiblyWrong


1 Answers

Depending on your exact needs, you might want to use the TStringList object.

like image 163
Andreas Rejbrand Avatar answered Oct 03 '22 13:10

Andreas Rejbrand