xte ::big_int ::operator^= ()
Defined in header <xte/math/big_int.hpp> Definition
Assigns the bitwise XOR with another big-integer. May throw if allocation fails.constexpr xte ::big_int & operator^= (xte ::big_int rhs )& noexcept (false );
Example
Output:xte ::big_int n =0b1010 ;n ^=0b1111 ;std ::println ("{}" ,n );
[View in Compiler Explorer]5