Cpp-reference shows the following function template (among others) from the (experimental) ranges TS:
template< ranges::InputIterator I, ranges::Sentinel<I> S,
class Proj = ranges::identity,
ranges::IndirectUnaryPredicate<ranges::projected<I, Proj>> Pred >
bool all_of( I first, S last, Pred pred, Proj proj = Proj{} );
What can the template parameter Proj
used for in combination with IndirectUnaryPredicate
?
It is a projection. You can use it to "project" the elements of the range before passing them to the predicate. It is useful, for example, when you are going to apply predicate to a complex datatype like
std::pair
, let's we want to apply predicate to thestd::pair::second
.checks a range of std::pairs using predicate
pred
on the pair's second element.