TdZdd
1.1
A top-down/breadth-first decision diagram manipulation framework
|
Entry for a hash map. More...
#include <MyHashTable.hpp>
Public Member Functions | |
bool | operator== (MyHashMapEntry const &o) const |
Check key's equivalence between another object. More... | |
bool | operator< (MyHashMapEntry const &o) const |
Check the order of keys with another object. More... | |
Public Attributes | |
K | key |
The key. | |
V | value |
The value. | |
Friends | |
std::ostream & | operator<< (std::ostream &os, MyHashMapEntry const &o) |
Print the object. More... | |
Entry for a hash map.
K | key of the map. |
V | value of the map. |
Definition at line 477 of file MyHashTable.hpp.
|
inline |
Check the order of keys with another object.
o | another object. |
Definition at line 510 of file MyHashTable.hpp.
References tdzdd::MyHashMapEntry< K, V >::key.
|
inline |
Check key's equivalence between another object.
o | another object. |
Definition at line 501 of file MyHashTable.hpp.
References tdzdd::MyHashMapEntry< K, V >::key.
|
friend |
Print the object.
os | the output stream. |
o | the object. |
Definition at line 520 of file MyHashTable.hpp.