base_uint<256>::operator++

Increment operators

Synopses

Declared in <arith_uint256.h>

Pre-increments the value by one.

base_uint<256>&
operator++();
» more...

Post-increments the value by one.

base_uint<256>
operator++(int postfix);
» more...

Return Value

  • A reference to this object after incrementing.
  • A copy of the value before incrementing.

Parameters

NameDescription
postfixUnused tag that selects the postfix form.