Fill out the interface of DenseSet a bit.

llvm-svn: 109562
This commit is contained in:
Owen Anderson 2010-07-27 23:55:47 +00:00
parent d2b44f0739
commit fd7fc038ac

View File

@ -58,6 +58,7 @@ public:
class Iterator {
typename MapTy::iterator I;
friend class DenseSet;
public:
typedef typename MapTy::iterator::difference_type difference_type;
typedef ValueT value_type;
@ -77,6 +78,7 @@ public:
class ConstIterator {
typename MapTy::const_iterator I;
friend class DenseSet;
public:
typedef typename MapTy::const_iterator::difference_type difference_type;
typedef ValueT value_type;
@ -103,6 +105,10 @@ public:
const_iterator begin() const { return ConstIterator(TheMap.begin()); }
const_iterator end() const { return ConstIterator(TheMap.end()); }
iterator find(const ValueT &V) { return Iterator(TheMap.find(V)); }
bool erase(Iterator I) { return TheMap.erase(I.I); }
bool erase(ConstIterator CI) { return TheMap.erase(CI.I); }
std::pair<iterator, bool> insert(const ValueT &V) {
return TheMap.insert(std::make_pair(V, 0));
}