Flips bits, i.e. changes true
values to false
and false
values to true
. Equivalent to a logical NOT operation on part or all of the bitset.
operator~
, but in-place).pos
.pos | - | the position of the bit to flip |
*this
.
#include <bitset> #include <iostream> int main() { std::bitset<4> flops; std::cout << flops << '\n' << flops.flip(0) << '\n' << flops.flip(2) << '\n' << flops.flip() << '\n'; }
Output:
sets bits to true or given value (public member function) |
|
sets bits to false (public member function) |
|
performs binary AND, OR, XOR and NOT (public member function) |
|
flips all the bits (public member function of std::vector<bool,Allocator> ) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/utility/bitset/flip