Public Member Functions | |
NMapItem (void) | |
Constructs a NMapItem object. | |
bool | operator== (const NMapItem< K, V > &rhs) const |
Test whether equals another NMapItem object. | |
bool | operator!= (const NMapItem< K, V > &rhs) const |
Test whether differs another NMapItem object. | |
bool | operator> (const NMapItem< K, V > &rhs) const |
Test whether is bigger than another NMapItem object. | |
bool | operator< (const NMapItem< K, V > &rhs) const |
Test whether is smaller than another NMapItem object. | |
bool | operator>= (const NMapItem< K, V > &rhs) const |
Test whether is bigger than or equals another NMapItem object. | |
bool | operator<= (const NMapItem< K, V > &rhs) const |
Test whether is smaller than or equals another NMapItem object. | |
Public Attributes | |
K | key |
V | value |
Definition at line 34 of file nmapitem.hpp.
bool operator== | ( | const NMapItem< K, V > & | rhs | ) | const [inline] |
Test whether equals another NMapItem object.
rhs | The object to be tested against |
Definition at line 52 of file nmapitem.hpp.
bool operator!= | ( | const NMapItem< K, V > & | rhs | ) | const [inline] |
Test whether differs another NMapItem object.
rhs | The object to be tested against |
Definition at line 65 of file nmapitem.hpp.
bool operator> | ( | const NMapItem< K, V > & | rhs | ) | const [inline] |
Test whether is bigger than another NMapItem object.
rhs | The object to be tested against |
Definition at line 78 of file nmapitem.hpp.
References key.
bool operator< | ( | const NMapItem< K, V > & | rhs | ) | const [inline] |
Test whether is smaller than another NMapItem object.
rhs | The object to be tested against |
Definition at line 92 of file nmapitem.hpp.
References key.
bool operator>= | ( | const NMapItem< K, V > & | rhs | ) | const [inline] |
bool operator<= | ( | const NMapItem< K, V > & | rhs | ) | const [inline] |
K key |
The key value/name
Definition at line 36 of file nmapitem.hpp.
Referenced by NMap::insert(), operator!=(), operator<(), operator<=(), operator==(), operator>(), and operator>=().
V value |
The value of the item
Definition at line 37 of file nmapitem.hpp.
Referenced by NMap::insert(), operator!=(), operator<=(), operator==(), and operator>=().