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

Method begin

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

Return an object that iterates over all 1 bits (++ and * only allowed when != end()). */

Source from the content-addressed store, hash-verified

182 constexpr bool Any() const noexcept { return !None(); }
183 /** Return an object that iterates over all 1 bits (++ and * only allowed when != end()). */
184 constexpr Iterator begin() const noexcept { return Iterator(m_val); }
185 /** Return a dummy object to compare Iterators with. */
186 constexpr IteratorEnd end() const noexcept { return IteratorEnd(); }
187 /** Find the first element (requires Any()). */

Callers 15

push_backVMethod · 0.45
operator""_hex_vFunction · 0.45
TryParseHexFunction · 0.45
EncodeBase64Function · 0.45
DecodeBase64Function · 0.45
EncodeBase32Function · 0.45
DecodeBase32Function · 0.45
operator()Method · 0.45
operator()Method · 0.45
insertFunction · 0.45
SplitFunction · 0.45
JoinFunction · 0.45

Calls 1

IteratorClass · 0.70

Tested by

no test coverage detected