CACAO
|
Go to the source code of this file.
Data Structures | |
struct | set |
Functions | |
set * | set_new (unsigned capacity) |
void | set_insert (set *s, void *element) |
void | set_remove (set *s, void *element) |
unsigned | set_size (const set *s) |
bool | set_empty (const set *s) |
bool | set_contains (const set *s, void *element) |
void * | set_pop (set *s) |