std::bitset::to_ulong
From Cppreference
unsigned long to_ulong() const
|
||
Converts the contents of the bitset to an unsigned long integer.
The first bit of the bitset corresponds to the least significant digit of the number and the last bit corresponds to the most significant digit.
Contents |
[edit] Parameters
(none)
[edit] Return value
the converted integer
[edit] Exceptions
std::overflow_error if the value can not be represented in unsigned long.
[edit] Example
This section is incomplete |
[edit] See also
|
returns a string representation of the data (public member function) |
||
|
returns an unsigned long long integer representation of the data (public member function) |