std::bitset::reference
From Cppreference
This section is incomplete |
[edit] Synopsis
class reference { friend class bitset; reference() noexcept; public: ~reference() noexcept; reference& operator=(bool x) noexcept; reference& operator=(const reference&) noexcept; bool operator~() const noexcept; operator bool() const noexcept; reference& flip() noexcept; };
noexcept specifications are from (C++11)