...
/New Algorithms - A Functional Perspective
New Algorithms - A Functional Perspective
This lesson gives an overview of the new algorithms that are a part of C++17.
We'll cover the following...
All new functions have a pendant in the purely functional language Haskell.
Functions | Haskell |
---|---|
std::for_each_n |
map |
std::exclusive_scan |
scanl |
std::inclusive_scan |
scanl1 |
std::transform_exclusive_scan and std::transform_inclusive_scan |
composition of map and |