BDE 4.14.0 Production release
|
This component private class
template describes the basic data and initialization semantics needed in order to implement a C++11 bitset
class. The BITSETSIZE
template parameter specifies the size of the underlying data array, d_data
. The NUM_INIT
template parameter specifies the number of elements in d_data
needed to use when storing a value of type unsigned long long
. Partial class template specializations of Bitset_ImpBase
are provided for NUM_INIT == 1
and NUM_INIT == 2
. No other values of NUM_INIT
are supported.