libstd v0.1.0
Loading...
Searching...
No Matches
Public Attributes | List of all members
HashNode Struct Reference

Node structure representing a key-value pair in a hash bucket's collision chain. More...

#include <hashmap.h>

Collaboration diagram for HashNode:
Collaboration graph
[legend]

Public Attributes

void * key
 
void * value
 
struct HashNodenext
 

Detailed Description

Node structure representing a key-value pair in a hash bucket's collision chain.

Member Data Documentation

◆ key

void* HashNode::key

Pointer to the stored key data.

◆ next

struct HashNode* HashNode::next

Pointer to the next node in the linked list (chaining).

◆ value

void* HashNode::value

Pointer to the stored value data.


The documentation for this struct was generated from the following file: