KUMI v4.0.0
Flawless Fluorite
Loading...
Searching...
No Matches

◆ sum

sum_t kumi::sum {}
inlineconstexprnodiscard

Callable object computing the sum of all elements.

On record types, this function operates on the underlying values, not on the fields themselves.

Note
For associative operations, this produces the same result as a left or right fold, but have different intermediate evaluation order.

inline constexpr

Header file

#include <kumi/algorithm/reduce.hpp>

Call Signature

template<product_type T>
constexpr auto sum(T && t);
constexpr sum_t sum
Callable object computing the sum of all elements.
Definition reduce.hpp:372
template<product_type T, typename V>
constexpr auto sum(T && t, V init);

Parameters

  • t: Product Type to operate on
  • init: Optional initial value of the reduction.

Return value

The result of the computation of `get<0>(t) + ... + get<N-1>(t) + init`

Helper type

namespace kumi::result
{
template<product_type T, typename Value> struct sum;
template<product_type T, typename Value>
using sum_t = typename sum<T,Value>::type;
}

Computes the return type of a call to kumi::sum

Examples

Tuple

#include <kumi/kumi.hpp>
#include <iostream>
int main()
{
auto t = kumi::tuple{2.,1,short{55},' '};
std::cout << kumi::sum(t, 100) << "\n";
std::cout << kumi::sum(t) << "\n";
}
Fixed-size collection of heterogeneous values.
Definition tuple.hpp:33

Record

#include <kumi/kumi.hpp>
#include <iostream>
int main()
{
using namespace kumi::literals;
auto r = kumi::record{"a"_id = 2.,"b"_id = 1,"c"_id = short{55},"d"_id = ' '};
std::cout << kumi::sum(r, 100) << "\n";
std::cout << kumi::sum(r) << "\n";
}
Fixed-size collection of heterogeneous tagged fields, tags are unique.
Definition record.hpp:36