mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-09 10:31:14 +00:00
Added iterator support for DenseSet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50235 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1e8586d175
commit
ea33c8fed6
@ -24,7 +24,8 @@ namespace llvm {
|
|||||||
/// should be optimized later if there is a need.
|
/// should be optimized later if there is a need.
|
||||||
template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
|
template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
|
||||||
class DenseSet {
|
class DenseSet {
|
||||||
DenseMap<ValueT, char, ValueInfoT> TheMap;
|
typedef DenseMap<ValueT, char, ValueInfoT> MapTy;
|
||||||
|
MapTy TheMap;
|
||||||
public:
|
public:
|
||||||
DenseSet(const DenseSet &Other) : TheMap(Other.TheMap) {}
|
DenseSet(const DenseSet &Other) : TheMap(Other.TheMap) {}
|
||||||
explicit DenseSet(unsigned NumInitBuckets = 64) : TheMap(NumInitBuckets) {}
|
explicit DenseSet(unsigned NumInitBuckets = 64) : TheMap(NumInitBuckets) {}
|
||||||
@ -32,8 +33,6 @@ public:
|
|||||||
bool empty() const { return TheMap.empty(); }
|
bool empty() const { return TheMap.empty(); }
|
||||||
unsigned size() const { return TheMap.size(); }
|
unsigned size() const { return TheMap.size(); }
|
||||||
|
|
||||||
// TODO add iterators.
|
|
||||||
|
|
||||||
void clear() {
|
void clear() {
|
||||||
TheMap.clear();
|
TheMap.clear();
|
||||||
}
|
}
|
||||||
@ -54,6 +53,41 @@ public:
|
|||||||
TheMap = RHS.TheMap;
|
TheMap = RHS.TheMap;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Iterators.
|
||||||
|
|
||||||
|
class Iterator {
|
||||||
|
typename MapTy::iterator I;
|
||||||
|
public:
|
||||||
|
Iterator(const typename MapTy::iterator &i) : I(i) {}
|
||||||
|
|
||||||
|
ValueT& operator*() { return I->first; }
|
||||||
|
ValueT* operator->() { return &I->first; }
|
||||||
|
|
||||||
|
Iterator& operator++() { ++I; return *this; };
|
||||||
|
bool operator==(const Iterator& X) const { return I == X.I; }
|
||||||
|
};
|
||||||
|
|
||||||
|
class ConstIterator {
|
||||||
|
typename MapTy::const_iterator I;
|
||||||
|
public:
|
||||||
|
ConstIterator(const typename MapTy::const_iterator &i) : I(i) {}
|
||||||
|
|
||||||
|
const ValueT& operator*() { return I->first; }
|
||||||
|
const ValueT* operator->() { return &I->first; }
|
||||||
|
|
||||||
|
ConstIterator& operator++() { ++I; return *this; };
|
||||||
|
bool operator==(const ConstIterator& X) const { return I == X.I; }
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef Iterator iterator;
|
||||||
|
typedef ConstIterator const_iterator;
|
||||||
|
|
||||||
|
iterator begin() { return Iterator(TheMap.begin()); }
|
||||||
|
iterator end() { return Iterator(TheMap.end()); }
|
||||||
|
|
||||||
|
const_iterator begin() const { return ConstIterator(TheMap.begin()); }
|
||||||
|
const_iterator end() const { return ConstIterator(TheMap.end()); }
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namespace llvm
|
} // end namespace llvm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user