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