MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / Last

Method Last

src/util/bitset.h:194–198  ·  view source on GitHub ↗

Find the last element (requires Any()). */

Source from the content-addressed store, hash-verified

192 }
193 /** Find the last element (requires Any()). */
194 constexpr unsigned Last() const noexcept
195 {
196 Assume(m_val != 0);
197 return std::bit_width(m_val) - 1;
198 }
199 /** Set this object's bits to be the binary AND between respective bits from this and a. */
200 constexpr IntBitSet& operator|=(const IntBitSet& a) noexcept { m_val |= a.m_val; return *this; }
201 /** Set this object's bits to be the binary OR between respective bits from this and a. */

Callers 4

DepGraphMethod · 0.45
TestTypeFunction · 0.45
MakeConnectedFunction · 0.45
FUZZ_TARGETFunction · 0.45

Calls

no outgoing calls

Tested by 3

TestTypeFunction · 0.36
MakeConnectedFunction · 0.36
FUZZ_TARGETFunction · 0.36