fix docs in iteration

`sum` is not precise. Precise algorithms are Python `fsum` and Mir's [`sum!(Summation.precise)`](http://docs.mir.dlang.io/latest/mir_sum.html)
This commit is contained in:
Ilya Yaroshenko 2016-07-26 10:05:11 +02:00
parent d6de61ccc1
commit efe33e3470

View file

@ -2591,7 +2591,7 @@ See_Also:
to use in UFCS chains.
$(LREF sum) is similar to $(D reduce!((a, b) => a + b)) that offers
precise summing of floating point numbers.
pairwise summing of floating point numbers.
+/
template reduce(fun...) if (fun.length >= 1)
{