Trace: • Utility Classes
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
jvx:common:util:classes [2020/07/28 09:48] cduncan [The Object Cache] |
jvx:common:util:classes [2020/07/28 09:51] (current) cduncan [Hashtable With Automatic List Management] |
||
---|---|---|---|
Line 46: | Line 46: | ||
==== Hashtable With Automatic List Management ==== | ==== Hashtable With Automatic List Management ==== | ||
- | The standard hashtable manages exactly one value per key. However, often more than one value per key has to be stored. In this case, a list has to be used as a value, in which a number of individual values are saved. This is not particularly difficult but a tedious and boring task nonetheless. | + | The standard hashtable manages exactly one value per key. However, often more than one value per key has to be stored. In this case, a list has to be used as a value in which a number of individual values are saved. This is not particularly difficult but a tedious and boring task nonetheless. |
The KeyValueList handles the administration of lists and leaves the developer time for more important tasks. | The KeyValueList handles the administration of lists and leaves the developer time for more important tasks. |