CScriptNum::operator+

Addition operators

Synopses

Declared in <script/script.h>

Returns the sum of this value and another CScriptNum.

CScriptNum
operator+(CScriptNum const& rhs) const;
» more...

Returns the sum of this value and an integer.

CScriptNum
operator+(int64_t const& rhs) const;
» more...

Return Value

The resulting value.

Parameters

NameDescription
rhsValue to add.