MCPcopy Create free account
hub / github.com/comaps/comaps / Intersect

Method Intersect

libs/search/cbv.cpp:90–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90CBV CBV::Intersect(CBV const & rhs) const
91{
92 if (IsFull() || rhs.IsEmpty())
93 return rhs;
94 if (IsEmpty() || rhs.IsFull())
95 return *this;
96 return CBV(coding::CompressedBitVector::Intersect(*m_p, *rhs.m_p));
97}
98
99CBV CBV::Take(uint64_t n) const
100{

Callers 13

FindStreetsFunction · 0.45
GetSimilarityFunction · 0.45
GoImplMethod · 0.45
MatchCategoriesMethod · 0.45
MatchPOIsAndBuildingsMethod · 0.45
MatchUnclassifiedMethod · 0.45
GetTopLocalitiesMethod · 0.45
FilterMethod · 0.45
CoverRectFunction · 0.45
CoverSpiralFunction · 0.45
InvalidateRectMethod · 0.45

Calls 5

IsFullFunction · 0.85
CBVClass · 0.70
IntersectFunction · 0.50
IsEmptyMethod · 0.45
IsFullMethod · 0.45

Tested by

no test coverage detected