1 template <
class Key,
class T>
41 pair<iterator,bool>
insert(
const value_type& x) {}
43 size_type
erase(
const Key& x) {}
49 size_type
count(
const Key& x)
const {}
Definition: bstmap.hpp:18
const_iterator end() const
Definition: bstmap.hpp:36
Key key_type
Definition: bstmap.hpp:7
iterator find(const Key &x)
Definition: bstmap.hpp:47
bstmap< Key, T > Self
Definition: bstmap.hpp:4
T data_type
Definition: bstmap.hpp:8
size_type erase(const Key &x)
Definition: bstmap.hpp:43
void erase(iterator pos)
Definition: bstmap.hpp:42
const_iterator find(const Key &x) const
Definition: bstmap.hpp:48
Self & operator=(const Self &x)
Definition: bstmap.hpp:30
const_iterator begin() const
Definition: bstmap.hpp:34
Definition: bstmap.hpp:15
bstmap(const Self &x)
Definition: bstmap.hpp:27
size_type size() const
Definition: bstmap.hpp:38
bool empty() const
Definition: bstmap.hpp:37
T & operator[](const Key &k)
Definition: bstmap.hpp:50
pair< iterator, bool > insert(const value_type &x)
Definition: bstmap.hpp:41
T mapped_type
Definition: bstmap.hpp:9
size_type count(const Key &x) const
Definition: bstmap.hpp:49
unsigned int size_type
Definition: bstmap.hpp:11
bstmap()
Definition: bstmap.hpp:24
void clear()
Definition: bstmap.hpp:44
int difference_type
Definition: bstmap.hpp:12
iterator begin()
Definition: bstmap.hpp:33
iterator end()
Definition: bstmap.hpp:35
pair< const Key, T > value_type
Definition: bstmap.hpp:10