Bitwise conjunction operators
Declared in <script/script.h>
Returns the bitwise AND of this value and another CScriptNum.
CScriptNum
operator&(CScriptNum const& rhs) const;
» more...
Returns the bitwise AND of this value and an integer.
CScriptNum
operator&(int64_t const& rhs) const;
» more...
The resulting value.
| Name | Description |
|---|---|
| rhs | Value to AND with. |