Unary minus operators
Declared in <script/script.h>
Returns the negation of this value.
CScriptNum
operator-() const;
» more...
Returns the difference of this value and another CScriptNum.
CScriptNum
operator-(CScriptNum const& rhs) const;
» more...
Returns the difference of this value and an integer.
CScriptNum
operator-(int64_t const& rhs) const;
» more...
| Name | Description |
|---|---|
| rhs | Value to subtract. |