template<class K, class T, class H = boost::hash<K>, class C = std::equal_to<K>, class A = std::allocator<std::pair<const K, T> >>
class Sawyer::Container::HashMap< K, T, H, C, A >::Node
Type for stored nodes.
A storage node contains an immutable key and its associated value.
Definition at line 80 of file HashMap.h.
template<class K , class T , class H = boost::hash<K>, class C = std::equal_to<K>, class A = std::allocator<std::pair<const K, T> >>
Key part of key/value node.
Returns the key part of a key/value node. Keys are not mutable when they are part of a map.
Definition at line 92 of file HashMap.h.
template<class K , class T , class H = boost::hash<K>, class C = std::equal_to<K>, class A = std::allocator<std::pair<const K, T> >>
Value part of key/value node.
Returns a reference to the value part of a key/value node.
Definition at line 99 of file HashMap.h.
template<class K , class T , class H = boost::hash<K>, class C = std::equal_to<K>, class A = std::allocator<std::pair<const K, T> >>
Value part of key/value node.
Returns a reference to the value part of a key/value node.
Definition at line 100 of file HashMap.h.