5#ifndef BITCOIN_INDIRECTMAP_H
6#define BITCOIN_INDIRECTMAP_H
23template <
class K,
class T>
26 typedef std::map<const K*, T, DereferencingComparator<const K*> >
base;
46 bool empty()
const {
return m.empty(); }
iterator lower_bound(const K &key)
const_iterator cbegin() const
base::const_iterator const_iterator
iterator find(const K &key)
const_iterator cend() const
std::map< const K *, T, DereferencingComparator< const K * > > base
const_iterator lower_bound(const K &key) const
size_type max_size() const
size_type erase(const K &key)
base::value_type value_type
const_iterator end() const
std::pair< iterator, bool > insert(const value_type &value)
base::size_type size_type
size_type count(const K &key) const
const_iterator find(const K &key) const
const_iterator begin() const
bool operator()(const T a, const T b) const