data_structures
Data Fields
s_hashset Struct Reference

A dynamically resizing linear-probing hashset. More...

#include <hashset.h>

Data Fields

void ** vals
 The data. More...
 
size_t size
 The number of elements in the hashset. More...
 
size_t capacity
 The current capacity of the hashset. More...
 
const t_typetype
 The type of elements in the hashset. More...
 

Detailed Description

A dynamically resizing linear-probing hashset.

Definition at line 43 of file hashset.h.

Field Documentation

◆ capacity

s_hashset::capacity

The current capacity of the hashset.

Definition at line 47 of file hashset.h.

◆ size

s_hashset::size

The number of elements in the hashset.

Definition at line 46 of file hashset.h.

◆ type

s_hashset::type

The type of elements in the hashset.

Definition at line 48 of file hashset.h.

◆ vals

s_hashset::vals

The data.

Definition at line 45 of file hashset.h.


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