[#base_uint-02-operator_inc-092] = xref:base_uint-02.adoc[base_uint]::operator++ :relfileprefix: ../ :mrdocs: Increment operators == Synopses Declared in `<arith_uint256.h>` Pre‐increments the value by one. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint]& xref:base_uint-02/operator_inc-06.adoc[operator++](); ---- [.small]#xref:base_uint-02/operator_inc-06.adoc[_» more..._]# Post‐increments the value by one. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:base_uint-02.adoc[base_uint] xref:base_uint-02/operator_inc-090.adoc[operator++](int postfix); ---- [.small]#xref:base_uint-02/operator_inc-090.adoc[_» more..._]# == Return Value * A reference to this object after incrementing. * A copy of the value before incrementing. == Parameters [cols="1,4"] |=== | Name| Description | *postfix* | Unused tag that selects the postfix form. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#