Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template<typename Iterator, typename Comp, typename Func>
- void for_each_if(Iterator begin, Iterator end, Comp cmp, Func f) {
- for(; begin != end; ++begin)
- if (cmp(*begin)) f(*begin);
- }
Advertisement
Add Comment
Please, Sign In to add comment