Java-like collections in Delphi

Is there any implementation (at least partial) of java collections (Set, List, Map, Collection ...) for Delphi 2010?

I need this in order to make the transfer code from java to Delphi a little easier.

+6
java collections delphi delphi-2010
source share
3 answers

The Contnrs.pas block has many types such as TStack, TBucketList, etc.

Generics.Collections elements have a set of common containers for Delphi.

And there is also a DeHL collection by our own Alexander Choban.

http://alex.ciobanu.org/?page_id=162

+9
source share

There is DeHL .

The link does not work, the new link: https://github.com/pavkam/DeHL

+4
source share
+2
source share

All Articles