|
@@ -18,11 +18,6 @@ public:
|
|
|
inline explicit operator bool() const noexcept {
|
|
|
return !this->empty();
|
|
|
}
|
|
|
-
|
|
|
- template <class TheKey>
|
|
|
- inline bool contains(const TheKey& key) const {
|
|
|
- return this->find(key) != this->end();
|
|
|
- }
|
|
|
};
|
|
|
|
|
|
template <class K, class L, class A>
|
|
@@ -34,9 +29,4 @@ public:
|
|
|
inline explicit operator bool() const noexcept {
|
|
|
return !this->empty();
|
|
|
}
|
|
|
-
|
|
|
- template <class TheKey>
|
|
|
- inline bool contains(const TheKey& key) const {
|
|
|
- return this->find(key) != this->end();
|
|
|
- }
|
|
|
};
|