Added missing size(), clear(), empty() functions.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9822 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
6ffb9fa179
commit
49c61cd129
1 changed files with 9 additions and 2 deletions
|
|
@ -7,11 +7,18 @@
|
|||
|
||||
// Set
|
||||
%define %std_set_methods_common(set...)
|
||||
set();
|
||||
set( const set& );
|
||||
|
||||
bool empty() const;
|
||||
size_type size() const;
|
||||
void clear();
|
||||
|
||||
void swap(set& v);
|
||||
|
||||
class const_iterator;
|
||||
class const_reverse_iterator;
|
||||
|
||||
set();
|
||||
set( const set& );
|
||||
|
||||
const_iterator begin() const;
|
||||
const_iterator end() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue