Increment operators
Declared in <arith_uint256.h>
Pre-increments the value by one.
base_uint&
operator++();
» more...
Post-increments the value by one.
base_uint
operator++(int postfix);
» more...
| Name | Description |
|---|---|
| postfix | Unused tag that selects the postfix form. |