Skip to content

Latest commit

 

History

History

std-vector-erase

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Removes from the vector

  • either a single element : position
  • or a range of elements : [first, last)
iterator erase (const_iterator position);
iterator erase (const_iterator first, const_iterator last);

last - это стоп-элемент.