This commit is contained in:
parent
aefdd396f8
commit
4e8b7d3628
11 changed files with 414 additions and 484 deletions
|
@ -46,6 +46,7 @@ public:
|
|||
void clear() {List.clear();}
|
||||
void resize(int i) {List.resize(i);}
|
||||
void erase(int i) {List.erase(List.begin()+i);}
|
||||
void erase(int First,int Last) {List.erase(List.begin()+First,List.begin()+Last);}
|
||||
void insert(int i,T &Item) {List.insert(List.begin()+i,Item);}
|
||||
// int begin() {return(List.begin);}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue