2022-05-01 09:56

c++ remove_if()

c++ remove_if()
c++ remove_if() 는 실제로 아이템을 삭제하는게 아니라,
erase() 함수로 삭제를 해야 실제로 삭제가 된다.
auto it_expired = remove_if(lst.begin(), ls...

댓글