Function reduce_exprs
pub fn reduce_exprs<F, E>(f: F, exprs: E) -> Expr
Expand description
Analogous to Iterator::reduce
.
An accumulator is initialized to the series given by the first expression in exprs
, and then each subsequent value
of the accumulator is computed from f(acc, next_expr_series)
. If exprs
is empty, an error is returned when
collect
is called.