Namespaces
Variants
Views
Actions

operator&,|,^(std::bitset)

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)

 
 
Defined in header <bitset>
(1)
template< std::size_t N >

std::bitset<N> operator&( const std::bitset<N>& lhs,

                          const std::bitset<N>& rhs );
(until C++11)
template< std::size_t N >

std::bitset<N> operator&( const std::bitset<N>& lhs,

                          const std::bitset<N>& rhs ) noexcept;
(since C++11)
(constexpr since C++23)
(2)
template< std::size_t N >

std::bitset<N> operator|( const std::bitset<N>& lhs,

                          const std::bitset<N>& rhs );
(until C++11)
template< std::size_t N >

std::bitset<N> operator|( const std::bitset<N>& lhs,

                          const std::bitset<N>& rhs ) noexcept;
(since C++11)
(constexpr since C++23)
(3)
template< std::size_t N >

std::bitset<N> operator^( const std::bitset<N>& lhs,

                          const std::bitset<N>& rhs );
(until C++11)
template< std::size_t N >

std::bitset<N> operator^( const std::bitset<N>& lhs,

                          const std::bitset<N>& rhs ) noexcept;
(since C++11)
(constexpr since C++23)

Performs binary AND, OR, and XOR between two bitsets, lhs and rhs.

1) Returns a std::bitset<N> containing the result of binary AND on corresponding pairs of bits of lhs and rhs.
2) Returns a std::bitset<N> containing the result of binary OR on corresponding pairs of bits of lhs and rhs.
3) Returns a std::bitset<N> containing the result of binary XOR on corresponding pairs of bits of lhs and rhs.

Contents

[edit] Parameters

lhs - the bitset on the left-hand side of the operator
rhs - the bitset on the right-hand side of the operator

[edit] Return value

1) std::bitset<N>(lhs) &= rhs
2) std::bitset<N>(lhs) |= rhs
3) std::bitset<N>(lhs) ^= rhs

[edit] Example

#include <bitset>
#include <iostream>
 
int main()
{
    std::bitset<4> b1("0110");
    std::bitset<4> b2("0011");
 
    std::cout << "b1 & b2: " << (b1 & b2) << '\n';
    std::cout << "b1 | b2: " << (b1 | b2) << '\n';
    std::cout << "b1 ^ b2: " << (b1 ^ b2) << '\n';
}

Output:

b1 & b2: 0010
b1 | b2: 0111
b1 ^ b2: 0101

[edit] See also

performs binary AND, OR, XOR and NOT
(public member function) [edit]