|
cds
2.3.3
|
Probe set type option. More...
#include <cds/container/details/cuckoo_base.h>
Probe set type option.
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.