|
cds
2.3.2
|
Option to define probeset type. More...
#include <cds/intrusive/cuckoo_set.h>
Option to define probeset type.
The option specifies probeset type for the CuckooSet. Available values:
cds::intrusive::cuckoo::list - the probeset is a single-linked list. The node contains pointer to next node in probeset.cds::intrusive::cuckoo::vector<Capacity> - the probeset is a vector with constant-size Capacity where Capacity is an unsigned int constant. The node does not contain any auxiliary data.