Computes the generalized sum of all elements using a tail recursive call.
f | Binary callable function to apply |
t | Tuple to operate on |
init | Initial value of the sum |
f( f( f(init, get<0>(t)), ...), get<N-1>(t))
Computes the return type of a call to kumi::fold_left