 |
Bitcoin Core
22.99.0
P2P Digital Currency
|
Go to the documentation of this file.
5 #ifndef BITCOIN_INDIRECTMAP_H
6 #define BITCOIN_INDIRECTMAP_H
23 template <
class K,
class T>
26 typedef std::map<const K*, T, DereferencingComparator<const K*> >
base;
46 bool empty()
const {
return m.empty(); }
58 #endif // BITCOIN_INDIRECTMAP_H
base::value_type value_type
iterator find(const K &key)
size_type erase(const K &key)
const_iterator end() const
std::pair< iterator, bool > insert(const value_type &value)
const_iterator begin() const
const_iterator cend() const
const_iterator lower_bound(const K &key) const
base::size_type size_type
size_type max_size() const
const_iterator cbegin() const
base::const_iterator const_iterator
bool operator()(const T a, const T b) const
const_iterator find(const K &key) const
iterator lower_bound(const K &key)
size_type count(const K &key) const
std::map< const K *, T, DereferencingComparator< const K * > > base