Urho3D::HashSet< T >::Node Struct Reference
Urho3D::HashSet< T >::Node Struct Reference
  Hash set node. More...
#include <Urho3D/Container/HashSet.h>
Inheritance diagram for Urho3D::HashSet< T >::Node:
Collaboration diagram for Urho3D::HashSet< T >::Node:
Public Member Functions | |
| Node () | |
| Construct undefined.  | |
| Node (const T &key) | |
| Construct with key.  | |
| 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 | |
| T | key_ | 
| Key.  | |
  Public Attributes inherited from Urho3D::HashNodeBase | |
| HashNodeBase * | down_ | 
| Next node in the bucket.  | |
| HashNodeBase * | prev_ | 
| Previous node.  | |
| HashNodeBase * | next_ | 
| Next node.  | |
Detailed Description
template<class T>
struct Urho3D::HashSet< T >::Node
Hash set node.
The documentation for this struct was generated from the following file:
- Source/Urho3D/Container/HashSet.h
 

 Public Member Functions inherited from