+ /**
+ Resizes the vector to @a n and assigns @a v to all elements.
+
+ @see resize()
+
+ @since 2.9.5
+ */
+ void assign(size_type n, const value_type& v);
+
+ /**
+ Assigns the elements in the given range to the vector.
+
+ The @a InputIterator template parameter must be an input iterator type.
+ This method clears the vector and then adds all elements from @a first
+ until, not not including, @a last to it.
+
+ @since 2.9.5
+ */
+ template <class InputIterator>
+ void assign(InputIterator first, InputIterator last);
+