xte ::big_int <T >::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 <T >& operator^= (xte ::big_int <T >rhs )& noexcept (false );
Example
Output:xte ::big_int n =0b1010 ;n ^=0b1111 ;std ::println ("{}" ,n );
[View in Compiler Explorer]5