Subtraction assignment operators
Declared in <script/script.h>
Subtracts another CScriptNum from this value in place.
CScriptNum&
operator-=(CScriptNum const& rhs);
» more...
Subtracts an integer from this value in place.
CScriptNum&
operator-=(int64_t const& rhs);
» more...
A reference to this value.
| Name | Description |
|---|---|
| rhs | Value to subtract. |