|
libstd v0.1.0
|
Node structure representing a key-value pair in a hash bucket's collision chain. More...
#include <hashmap.h>

Public Attributes | |
| void * | key |
| void * | value |
| struct HashNode * | next |
Node structure representing a key-value pair in a hash bucket's collision chain.
| void* HashNode::key |
Pointer to the stored key data.
| struct HashNode* HashNode::next |
Pointer to the next node in the linked list (chaining).
| void* HashNode::value |
Pointer to the stored value data.