| 
    TacOS
    0.2
    
   | 
 
#include <hashmap.h>

Champs de données | |
| struct hashmap_key_t * | key | 
| struct hashmap_value_t * | value | 
| struct hashmap_cell_t * | next | 
Pour chaque valeur de hash, on retrouve une liste chainée dont les éléments sont du type hashmap_cell_t.
| struct hashmap_key_t* hashmap_cell_t::key | 
Clef.
| struct hashmap_cell_t* hashmap_cell_t::next | 
Élement suivant.
| struct hashmap_value_t* hashmap_cell_t::value | 
Valeur.
 1.8.7