MCPcopy Create free account
hub / github.com/BTCGPU/BTCGPU / operator&

Method operator&

src/script/script.h:266–266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

264 inline CScriptNum& operator-=( const CScriptNum& rhs) { return operator-=(rhs.m_value); }
265
266 inline CScriptNum operator&( const int64_t& rhs) const { return CScriptNum(m_value & rhs);}
267 inline CScriptNum operator&( const CScriptNum& rhs) const { return operator&(rhs.m_value); }
268
269 inline CScriptNum& operator&=( const CScriptNum& rhs) { return operator&=(rhs.m_value); }

Callers

nothing calls this directly

Calls 1

CScriptNumClass · 0.70

Tested by

no test coverage detected