namespace kumi::result
{
template<product_type Tuple,
typename Value>
struct sum;
template<product_type Tuple, typename Value>
using sum_t = typename sum_t<Tuple,Value>::type;
}
constexpr auto sum(Tuple &&t, Value init)
Computes the sum of all elements.
Definition reduce.hpp:37