Searched refs:SmallSetIterator (Results 1 – 1 of 1) sorted by relevance
34 class SmallSetIterator35 : public iterator_facade_base<SmallSetIterator<T, N, C>,40 using SelfTy = SmallSetIterator<T, N, C>;52 SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter), isSmall(false) {} in SmallSetIterator() function54 SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter), isSmall(true) {} in SmallSetIterator() function58 ~SmallSetIterator() { in ~SmallSetIterator()65 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator() function74 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() function83 SmallSetIterator& operator=(const SmallSetIterator& Other) {97 SmallSetIterator& operator=(SmallSetIterator&& Other) {[all …]