xte ::big_int <T >::operator>>= ()
Defined in header <xte/math/big_int.hpp> Definition
Shifts the bits of the big-integer leftward, or rightward ifconstexpr xte ::big_int <T >& operator>>= (const xte ::big_int <T >& rhs )& noexcept (false );
rhs is negative. May throw if allocation fails.Example
Output:xte ::big_int n =2938746987 ;n >>=14 ;std ::println ("{}" ,n );
[View in Compiler Explorer]179366