add tests for vector assign iterator, and tests script
This commit is contained in:
@@ -99,17 +99,11 @@ public:
|
||||
template <class InputIterator>
|
||||
typename enable_if< !is_integral<InputIterator>::value,void >::type
|
||||
assign(InputIterator first, InputIterator last);
|
||||
// template <class InputIterator>
|
||||
// void assign(InputIterator first, InputIterator last
|
||||
// typename enable_if< !is_integral<InputIterator>::value, bool >::type == true);
|
||||
// template <class InputIterator>
|
||||
// typename enable_if< is_integral<InputIterator>::value,void >::type
|
||||
// assign(size_type n, const value_type& val);
|
||||
void assign(size_type n, const value_type& val);
|
||||
// push_back ---------------------------------
|
||||
void push_back(const value_type & val);
|
||||
// pop_back ----------------------------------
|
||||
//void pop_back();
|
||||
void pop_back();
|
||||
// insert ------------------------------------
|
||||
//iterator insert(iterator position, const value_type& val);
|
||||
//void insert(iterator position, size_type n, const value_type& val);
|
||||
|
||||
Reference in New Issue
Block a user