Mods to match the C++ standard
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10039 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
9e8ac47f1c
commit
0da1552b26
1 changed files with 6 additions and 6 deletions
|
|
@ -24,13 +24,13 @@
|
|||
class const_iterator;
|
||||
class const_reverse_iterator;
|
||||
|
||||
const_iterator begin() const;
|
||||
const_iterator end() const;
|
||||
const_reverse_iterator rbegin();
|
||||
const_reverse_iterator rend();
|
||||
iterator begin();
|
||||
iterator end();
|
||||
reverse_iterator rbegin();
|
||||
reverse_iterator rend();
|
||||
|
||||
void erase(const_iterator pos);
|
||||
void erase(const_iterator first, const_iterator last);
|
||||
void erase(iterator pos);
|
||||
void erase(iterator first, iterator last);
|
||||
|
||||
const_iterator find(const key_type& x);
|
||||
const_iterator lower_bound(const key_type& x);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue