functional programming - Filter method for C++ data structures -
what best way filter out elements in data structure don't obey predicate? i.e. method similar "filter" methods in functional programming languages.
stl has remove_if , remove_copy_if algorithms.
Comments
Post a Comment