Namespaces
Variants
Views
Actions

std::bitset<N>::operator&=,|=,^=,~

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& operator&=( const bitset& other );
(until C++11)
bitset& operator&=( const bitset& other ) noexcept;
(since C++11)
(constexpr since C++23)
(2)
bitset& operator|=( const bitset& other );
(until C++11)
bitset& operator|=( const bitset& other ) noexcept;
(since C++11)
(constexpr since C++23)
(3)
bitset& operator^=( const bitset& other );
(until C++11)
bitset& operator^=( const bitset& other ) noexcept;
(since C++11)
(constexpr since C++23)
(4)
bitset operator~() const;
(until C++11)
bitset operator~() const noexcept;
(since C++11)
(constexpr since C++23)

Performs binary AND, OR, XOR and NOT.

1) Sets the bits to the result of binary AND on corresponding pairs of bits of *this and other.
2) Sets the bits to the result of binary OR on corresponding pairs of bits of *this and other.
3) Sets the bits to the result of binary XOR on corresponding pairs of bits of *this and other.
4) Returns a temporary copy of *this with all bits flipped (binary NOT).

Note that &=, |=, and ^= are only defined for bitsets of the same size N.

Contents

[edit] Parameters

other - another bitset

[edit] Return value

1-3) *this
4) std::bitset<N>(*this).flip()

[edit] Example

#include <bitset>
#include <cstddef>
#include <iostream>
#include <string>
 
int main()
{
    const std::string pattern_str{"1001"};
    std::bitset<16> pattern{pattern_str}, dest;
 
    for (std::size_t i = dest.size() / pattern_str.size(); i != 0; --i)
    {
        dest <<= pattern_str.size();
        dest |= pattern;
        std::cout << dest << " (i = " << i << ")\n";
    }
 
    std::cout << ~dest << " (~dest)\n";
}

Output:

0000000000001001 (i = 4)
0000000010011001 (i = 3)
0000100110011001 (i = 2)
1001100110011001 (i = 1)
0110011001100110 (~dest)

[edit] See also

performs binary shift left and shift right
(public member function) [edit]