First page Back Continue Last page Graphics
Pointer to function cont.
Most common use is as arguments to other functions.
template<class In, class Pred> In find_if(In begin, In end, Pred f) while(begin != end && !f(*begin)) ++begin; return begin;
Pred can be any type as long as f(*begin) is defined