|
template<typename I , typename S , typename T , typename Op = plus, typename P = ident, requires = (Sentinel<S, I>() && Accumulateable<I, T, Op, P>())> |
T | operator() (I begin, S end, T init, Op op_=Op{}, P proj_=P{}) const |
|
template<typename Rng , typename T , typename Op = plus, typename P = ident, typename I = range_iterator_t<Rng>, requires = (Range<Rng>() && Accumulateable<I, T, Op, P>())> |
T | operator() (Rng &&rng, T init, Op op=Op{}, P proj=P{}) const |
|