Summator.partialsSum

Undocumented in source. Be warned that the author may not have intended to support it.
struct Summator(T, Summation summation = Summation.Precise)
version(none)
static if(summation == Summation.Precise)
partialsSum
()
if (
isMutable!T &&
(
summation == Summation.Precise &&
isFloatingPoint!T
||
summation == Summation.Kahan &&
isSummable!T
||
(
summation == Summation.KBN ||
summation == Summation.KB2
)
&&
(
isFloatingPoint!T ||
isComplex!T
)
)
)

Meta