Searched defs:BooleanStateWithSetVector (Results 1 – 1 of 1) sorted by relevance
655 struct BooleanStateWithSetVector : public BooleanState { struct656 bool contains(const Ty &Elem) const { return Set.contains(Elem); } in contains()657 bool insert(const Ty &Elem) { in insert()663 const Ty &operator[](int Idx) const { return Set[Idx]; } in operator []()664 bool operator==(const BooleanStateWithSetVector &RHS) const { in operator ==()667 bool operator!=(const BooleanStateWithSetVector &RHS) const { in operator !=()671 bool empty() const { return Set.empty(); } in empty()672 size_t size() const { return Set.size(); } in size()675 BooleanStateWithSetVector &operator^=(const BooleanStateWithSetVector &RHS) { in operator ^=()683 SetVector<Ty> Set;[all …]