Searched defs:BooleanStateWithSetVector (Results 1 – 1 of 1) sorted by relevance
550 struct BooleanStateWithSetVector : public BooleanState { struct551 bool contains(const Ty &Elem) const { return Set.contains(Elem); } in contains()552 bool insert(const Ty &Elem) { in insert()558 const Ty &operator[](int Idx) const { return Set[Idx]; } in operator []()559 bool operator==(const BooleanStateWithSetVector &RHS) const { in operator ==()562 bool operator!=(const BooleanStateWithSetVector &RHS) const { in operator !=()566 bool empty() const { return Set.empty(); } in empty()567 size_t size() const { return Set.size(); } in size()570 BooleanStateWithSetVector &operator^=(const BooleanStateWithSetVector &RHS) { in operator ^=()578 SetVector<Ty> Set;[all …]