Maximum number of items in each hash bucket.
Source position: contnrs.pp line 212
const MaxItemsPerHash = 3; |
MaxItemsPerHash is the threshold above which the hash is expanded. If the number of elements in a hash bucket becomes larger than this value, the hash size is increased.
|
Hash list class for pointer data. |