Home
last modified time | relevance | path

Searched refs:SmallSetIterator (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallSet.h34 class SmallSetIterator
35 : public iterator_facade_base<SmallSetIterator<T, N, C>,
40 using SelfTy = SmallSetIterator<T, N, C>;
58 ~SmallSetIterator() { in ~SmallSetIterator()
65 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) { in SmallSetIterator() function
74 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) { in SmallSetIterator() function
83 SmallSetIterator& operator=(const SmallSetIterator& Other) {
97 SmallSetIterator& operator=(SmallSetIterator&& Other) {
111 bool operator==(const SmallSetIterator &RHS) const {
119 SmallSetIterator &operator++() { // Preincrement
[all …]