Urho3D
|
Hash map key-value pair with const key. More...
#include </home/runner/work/urho3d-doxygen.github.io/urho3d-doxygen.github.io/urho3d_repo/Source/Urho3D/Container/HashMap.h>
Public Member Functions | |
KeyValue () | |
Construct with default key. | |
KeyValue (const T &first, const U &second) | |
Construct with key and value. | |
KeyValue (const KeyValue &value) | |
Copy-construct. | |
KeyValue & | operator= (const KeyValue &rhs)=delete |
Prevent assignment. | |
bool | operator== (const KeyValue &rhs) const |
Test for equality with another pair. | |
bool | operator!= (const KeyValue &rhs) const |
Test for inequality with another pair. | |
Public Attributes | |
const T | first_ |
Key. | |
U | second_ |
Value. | |
Hash map key-value pair with const key.