Tinyhash
This is a library containing multiple C implementations of hashmap.
Loading...
Searching...
No Matches
Public Attributes | List of all members
th_funcs_t Struct Reference

Centralizing every function associated with an unique implementation method. More...

#include <tinyhash.h>

Collaboration diagram for th_funcs_t:
Collaboration graph

Public Attributes

th_create_func_t create
 
th_get_func_t get
 
th_put_func_t put
 
th_delete_func_t _delete
 
th_free_func_t _free
 
th_begin_iterator_func_t begin_iterator
 
th_len_func_t len
 

Detailed Description

Centralizing every function associated with an unique implementation method.

Definition at line 57 of file tinyhash.h.

Member Data Documentation

◆ _delete

th_delete_func_t th_funcs_t::_delete

Definition at line 61 of file tinyhash.h.

Referenced by th_delete().

◆ _free

th_free_func_t th_funcs_t::_free

Definition at line 62 of file tinyhash.h.

Referenced by th_clear(), and th_free().

◆ begin_iterator

th_begin_iterator_func_t th_funcs_t::begin_iterator

Definition at line 63 of file tinyhash.h.

Referenced by th_begin_iterator(), and th_empty_iterator().

◆ create

th_create_func_t th_funcs_t::create

Definition at line 58 of file tinyhash.h.

Referenced by th_create().

◆ get

th_get_func_t th_funcs_t::get

Definition at line 59 of file tinyhash.h.

Referenced by th_get().

◆ len

th_len_func_t th_funcs_t::len

Definition at line 64 of file tinyhash.h.

Referenced by th_len().

◆ put

th_put_func_t th_funcs_t::put

Definition at line 60 of file tinyhash.h.

Referenced by th_put().


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