CScriptNum::operator==

Equality operators

Synopses

Declared in <script/script.h>

Compares this value with an integer for equality.

bool
operator==(int64_t const& rhs) const;
» more...

Compares this value with another CScriptNum for equality.

bool
operator==(CScriptNum const& rhs) const;
» more...

Return Value

true if the values are equal.

Parameters

NameDescription
rhsInteger to compare against.