I have a "Database" class that has a template "myMap" that stores instances of the "Client" class. The "myMap" consists of nodes (instances of the "Node" class). How do I show this in UML? template<typename KEY, typename VALUE> class myMap; template <typename KEY, typename VALUE> class Node { private: friend class myMap<KEY, VALUE>; KEY id; ..
Category : associative-array
I am looking for a container like std::unordered_map that does not use any dynamic allocation. I believe this would be the case for any associate container with a fixed number of keys, or even keys that have to be chosen at compile time. I am not looking for a constexpr or compile time hash map ..
Recent Comments