|
template<typename I , typename S , typename F , typename P = identity> |
auto | operator() (I begin, S end, F fun, P proj=P{}) const -> for_each_result< I, F > requires input_iterator< I > &&sentinel_for< S, I > &&indirectly_unary_invocable< F, projected< I, P >> |
|
template<typename Rng , typename F , typename P = identity> |
auto | operator() (Rng &&rng, F fun, P proj=P{}) const -> for_each_result< safe_iterator_t< Rng >, F > requires input_range< Rng > &&indirectly_unary_invocable< F, projected< iterator_t< Rng >, P >> |
|