libamxc
1.10.3
C Generic Data Containers
|
The set structure. More...
#include <amxc_set.h>
Data Fields | |
amxc_llist_t | list |
amxc_set_alert_t | alert_handler |
void * | priv |
bool | counted |
int | count |
The set structure.
Definition at line 129 of file amxc_set.h.
amxc_set_alert_t _set::alert_handler |
Callback function, is called when a flag is added or removed from the set
Definition at line 131 of file amxc_set.h.
int _set::count |
Number of flags in the set, or in case of a counted set, the sum of all flag counts
Definition at line 135 of file amxc_set.h.
bool _set::counted |
Indicates if it is a counted set
Definition at line 134 of file amxc_set.h.
amxc_llist_t _set::list |
The linked list containing all set flags
Definition at line 130 of file amxc_set.h.
void* _set::priv |
Private data, can be any arbitrary pointer
Definition at line 133 of file amxc_set.h.