[#bitset_detail-operator_xor-01] = xref:bitset_detail.adoc[bitset_detail]::operatorˆ :relfileprefix: ../ :mrdocs: Return an object with the binary XOR between respective bits from a and b. == Synopsis Declared in `<util/bitset.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:bitset_detail/IntBitSet.adoc[IntBitSet] operatorˆ( xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& a, xref:bitset_detail/IntBitSet.adoc[IntBitSet] const& b) noexcept; ---- == Return Value The symmetric difference of a and b. == Parameters [cols="1,4"] |=== | Name| Description | *a* | The left‐hand bitset. | *b* | The right‐hand bitset. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#