xte ::big_int <T >::operator++ ()
Defined in header <xte/math/big_int.hpp> Definitions
#0Increments the big-integer by one. May throw if allocation fails.constexpr xte ::big_int <T >& operator++ ()& noexcept (false );
#1
Increments the big-integer by one, and returns the previous value. May throw if allocation fails.constexpr xte ::big_int <T >operator++ (int )& noexcept (false );
Example
Output:xte ::big_int n =18446744073709551615ull ; ++n ;std ::println ("{}" ,n );
[View in Compiler Explorer]18446744073709551616