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

Method Union

libs/search/cbv.cpp:81–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81CBV CBV::Union(CBV const & rhs) const
82{
83 if (IsFull() || rhs.IsEmpty())
84 return *this;
85 if (IsEmpty() || rhs.IsFull())
86 return rhs;
87 return CBV(coding::CompressedBitVector::Union(*m_p, *rhs.m_p));
88}
89
90CBV CBV::Intersect(CBV const & rhs) const
91{

Callers 2

FindStreetsFunction · 0.45
WithPostcodesMethod · 0.45

Calls 5

IsFullFunction · 0.85
UnionFunction · 0.85
CBVClass · 0.70
IsEmptyMethod · 0.45
IsFullMethod · 0.45

Tested by

no test coverage detected