Return a bitset that results from a bitwise XOR of the specified lhs and rhs.

Synopsis

Declared in <bslstl_bitset.h>

template<std::size_t N>
bitset<N>
operatorˆ(
    bitset<N> const& lhs,
    bitset<N> const& rhs) noexcept;

Return Value

bitset that is the bitwise XOR of lhs and rhs

Parameters

Name

Description

lhs

left‐hand bitset operand

rhs

right‐hand bitset operand

Created with MrDocs