Bitwise conjunction assignment operators
Declared in <script/script.h>
Bitwise-ANDs another CScriptNum into this value in place.
CScriptNum&
operator&=(CScriptNum const& rhs);
» more...
Bitwise-ANDs an integer into this value in place.
CScriptNum&
operator&=(int64_t const& rhs);
» more...
A reference to this value.
| Name | Description |
|---|---|
| rhs | Value to AND with. |