Pipes: How Plumbing Can Make Your C++ Code More Expressive
https://cppcon.org/ https://github.com/CppCon/CppCon2020/blob/main/Presentations/pipes_how_plumbing_can_make_your_cpp_code_more_expressive/pipes_how_plumbing_can_make_your_cpp_code_more_expressive__jonathan_boccara__cppcon_2020.pdf
In code we work with collections of objects all the time, yet it’s not always easy to operate on them with concise and expressive code.
Traversing collections with for loops gets ugly and brittle as soon as they have more than a few lines. STL algorithms are a …