|
Urho3D
|
Hash map node. More...
#include </home/runner/work/urho3d-doxygen.github.io/urho3d-doxygen.github.io/urho3d_repo/Source/Urho3D/Container/HashMap.h>
Public Member Functions | |
| Node ()=default | |
| Construct undefined. | |
| Node (const T &key, const U &value) | |
| Construct with key and value. | |
| Node * | Next () const |
| Return next node. | |
| Node * | Prev () const |
| Return previous node. | |
| Node * | Down () const |
| Return next node in the bucket. | |
Public Member Functions inherited from Urho3D::HashNodeBase | |
| HashNodeBase () | |
| Construct. | |
Public Attributes | |
| KeyValue | pair_ |
| Key-value pair. | |
Public Attributes inherited from Urho3D::HashNodeBase | |
| HashNodeBase * | down_ |
| Next node in the bucket. | |
| HashNodeBase * | prev_ |
| Previous node. | |
| HashNodeBase * | next_ |
| Next node. | |
Hash map node.