std::erase,std::erase_if(std::list) (3) Linux Manual Page
std::erase,std::erase_if(std::list) – std::erase,std::erase_if(std::list) Synopsis Defined in header<list> template <class T, class Alloc, class U> (1)(since C++ 20) void erase(std::list<T, Alloc> &c, const U &value); template <class T, class Alloc, class Pred> (2)(since C++ 20) void erase_if(std::list<T, Alloc> &c, Pred pred); 1) Erases all elements that compare equal to value from the container. Equivalent to c.remove_if([&](auto&…
