A utility class that works like a Map, but accepts multiple values as the key for each value.
Map
Optional
Get the number of entries in the map.
Clear all values from the map.
Delete the value for a given key.
Time complexity: O(1), given that the length of the key is constant.
Get an iterator for all entries in the map.
Call a function for each entry in the map.
Get a value for a given key.
Check if a value exists for a given key.
Get an iterator for all keys in the map.
Add or update a value for a given key.
Get an iterator for all values in the map.
A utility class that works like a
Map
, but accepts multiple values as the key for each value.