Searched defs:IntSet (Results 1 – 1 of 1) sorted by relevance
32 IntSet() : repr_ {MMakePandaUnique<SmallRepr>()} {}; in IntSet() function34 IntSet(const IntSet &other) : repr_ {other.repr_->Clone()} {}; in IntSet() function386 friend class IntSet; variable515 friend class IntSet; variable523 IntSet(MPandaVector<T> set) : repr_ {MMakePandaUnique<SmallRepr>(set)} {}; in IntSet() function524 IntSet(BitVector set) : repr_ {MMakePandaUnique<LargeRepr>(set)} {}; in IntSet() function525 IntSet(MPandaUniquePtr<Repr> &&repr) : repr_ {std::move(repr)} {}; in IntSet() function