How do iI remove the ith item from a std::vectorstd::vector?
I know iI want to delete the ith element.
I have int i; and std::vector<process> pList; where processprocess is a struct.
I want to do something equiliventequivalent to the following:
pList.remove(i);
Thanks!
pList.remove(i);