- Modern C++ Programming Cookbook
- Marius Bancila
- 61字
- 2021-07-09 21:04:38
Getting ready
In this recipe, we discuss standard algorithms that take an argument that is a function or predicate applied to the elements it iterates through. You need to know what unary and binary functions are and what predicates and comparison functions are. You also need to be familiar with function objects because lambda expressions are syntactic sugar for function objects.