From subsecret
Jump to: navigation, search
m (Steffen Mikkelsen moved page COLT HashMap to Colt HashMap)
No edit summary
Line 1: Line 1:
=Extension of Colt HashMap using Generics for storage of Objects=
=Extension of Colt HashMap using Generics for storage of Objects=
This is based on part of the code from Colt Project: http://acs.lbl.gov/software/colt/
This is based on part of the code from Colt Project: http://acs.lbl.gov/software/colt/
The Colt Project is made before generics was introduced in Java. This means that the HashMap from Colt Project cannot be used as a drop-in replacement for Java's HashMap.
This version contains only the HashMap part of Colt Project and adds the support for generics, so that it can now be used as a drop-in replacement for Java's HashHamp

Revision as of 11:40, 14 June 2013

Extension of Colt HashMap using Generics for storage of Objects

This is based on part of the code from Colt Project: http://acs.lbl.gov/software/colt/ The Colt Project is made before generics was introduced in Java. This means that the HashMap from Colt Project cannot be used as a drop-in replacement for Java's HashMap.

This version contains only the HashMap part of Colt Project and adds the support for generics, so that it can now be used as a drop-in replacement for Java's HashHamp