Uniot Core
0.8.1
Loading...
Searching...
No Matches

A simple map class that associates keys with values using an iterable queue. More...

Collaboration diagram for Map:

Classes

class  uniot::Map< T_Key, T_Value >
 

Detailed Description

A simple map class that associates keys with values using an iterable queue.

The Map class provides a key-value storage mechanism built on top of the IterableQueue. It allows storing, retrieving, checking existence, and removing key-value pairs. This implementation does not allow duplicate keys.

Template Parameters
T_KeyThe type of the keys.
T_ValueThe type of the values.