GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::bitset::flip(3) C++ Standard Libary std::bitset::flip(3)

std::bitset::flip - std::bitset::flip


bitset& flip(); (until C++11)
bitset& flip() noexcept; (since C++11)
(1) (until C++23)
constexpr bitset& flip() noexcept; (since C++23)
bitset& flip( std::size_t pos ); (2) (until C++23)
constexpr bitset& flip( std::size_t pos ); (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.


pos - the position of the bit to flip


*this


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

// Run this code


#include <iostream>
#include <bitset>


int main()
{
std::bitset<4> flops;


std::cout << flops << '\n'
<< flops.flip(0) << '\n'
<< flops.flip(2) << '\n'
<< flops.flip() << '\n';
}


0000
0001
0101
1010


set sets bits to true or given value
(public member function)
reset sets bits to false
(public member function)
operator&=
operator|= performs binary AND, OR, XOR and NOT
operator^= (public member function)
operator~

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.