Numeric
The numeric library hosts several numeric functions. We'll look at a few of them in this lesson.
We'll cover the following...
The numeric algorithms std::accumulate
, std::adjacent_difference
, std::partial_sum
, std::inner_product
, and std::iota
and the six additional C++17 algorithms std::exclusive_scan
, std::inclusive_scan
, std::transform_exclusive_scan
, std::transform_inclusive_sc
...