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

Method Overlaps

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

Check if the intersection between two sets is non-empty. */

Source from the content-addressed store, hash-verified

206 constexpr IntBitSet& operator^=(const IntBitSet& a) noexcept { m_val ^= a.m_val; return *this; }
207 /** Check if the intersection between two sets is non-empty. */
208 constexpr bool Overlaps(const IntBitSet& a) const noexcept { return m_val & a.m_val; }
209 /** Return an object with the binary AND between respective bits from a and b. */
210 friend constexpr IntBitSet operator&(const IntBitSet& a, const IntBitSet& b) noexcept { return I(a.m_val & b.m_val); }
211 /** Return an object with the binary OR between respective bits from a and b. */

Callers 10

SetInfoClass · 0.45
ImproveMethod · 0.45
MinimizeStepMethod · 0.45
SanityCheckMethod · 0.45
PostLinearizeFunction · 0.45
FUZZ_TARGETFunction · 0.45
TestTypeFunction · 0.45
FindCandidateSetMethod · 0.45
SerMethod · 0.45

Calls

no outgoing calls

Tested by 5

FUZZ_TARGETFunction · 0.36
TestTypeFunction · 0.36
FindCandidateSetMethod · 0.36
SerMethod · 0.36