Skip to content

Commit 9555d9e

Browse files
committed
add note
1 parent d53f3d6 commit 9555d9e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

_code/CppCon/2023/thinking_functionally _in_c++.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,6 @@ Creating an object wrapper using a lambda.
7171
7272
## Composable Functions
7373
74-
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

Comments
 (0)