MCPcopy Create free account
hub / github.com/SVF-tools/SVF / operator==

Method operator==

svf/include/Util/SparseBitVector.h:830–842  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

828 }
829
830 bool operator==(const SparseBitVector &RHS) const
831 {
832 ElementListConstIter Iter1 = Elements.begin();
833 ElementListConstIter Iter2 = RHS.Elements.begin();
834
835 for (; Iter1 != Elements.end() && Iter2 != RHS.Elements.end();
836 ++Iter1, ++Iter2)
837 {
838 if (*Iter1 != *Iter2)
839 return false;
840 }
841 return Iter1 == Elements.end() && Iter2 == RHS.Elements.end();
842 }
843
844 // Union our bitmap with the RHS and return true if we changed.
845 bool operator|=(const SparseBitVector &RHS)

Callers

nothing calls this directly

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected