xte ::big_int ::operator^ ()
Defined in header <xte/math/big_int.hpp> Definition
Computes the bitwise XOR of two big-integers. May throw if allocation fails.[[nodiscard ]]friend constexpr xte ::big_int operator^ (xte ::big_int lhs ,xte ::big_int rhs )noexcept (false );
Example
[View in Compiler Explorer]static_assert ((xte ::big_int (0b1010 ) ^0b1111 ) ==0b101 );