Namespaces
Variants
Views
Actions

std::bitset<N>::flip

From cppreference.com
< cpp‎ | utility‎ | bitset
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
(1)
bitset& flip();
(until C++11)
bitset& flip() noexcept;
(since C++11)
(constexpr since C++23)
bitset& flip( std::size_t pos );
(2) (constexpr since C++23)

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.

1) Flips all bits (like operator~, but in-place).
2) Flips the bit at the position pos.

Contents

[edit] Parameters

pos - the position of the bit to flip

[edit] Return value

*this

[edit] Exceptions

2) throws std::out_of_range if pos does not correspond to a valid position within the bitset.

[edit] Example

#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:

0000
0001
0101
1010

[edit] See also

sets bits to true or given value
(public member function) [edit]
sets bits to false
(public member function) [edit]
performs binary AND, OR, XOR and NOT
(public member function) [edit]
flips all the bits
(public member function of std::vector<bool,Allocator>) [edit]