We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d53f3d6 commit 9555d9eCopy full SHA for 9555d9e
_code/CppCon/2023/thinking_functionally _in_c++.md
@@ -71,4 +71,6 @@ Creating an object wrapper using a lambda.
71
72
## Composable Functions
73
74
-
+- Filter: take a list of item of one and eliminate to create a list of the same number or fewer items of the same type. `std::copy_if`
75
+- Map: Take a list of items of one type and create a list of the same size with all items converted to a new type. `std::transform`
76
+- Reduce: Take a list of items and create a single value.`std::accumulate` `std::reduce`
0 commit comments