Difference between revisions of "Intermediate C++ Game Programming Tutorial 16"
From Chilipedia
(→Homework) |
(→Video Timestamp Index) |
||
Line 8: | Line 8: | ||
== Video Timestamp Index == | == Video Timestamp Index == | ||
− | [https://youtu.be/ | + | [https://youtu.be/3J1Pz30IE4Q Tutorial 16] |
== Homework == | == Homework == |
Revision as of 22:12, 26 October 2017
In the video we take a look at a couple of bangers from <algorithm>
, and we learn what lambda functions are and how to use them.
Topics Covered
- Algorithms
std::sort
andstd::remove_if
- Concepts (as in, type concepts like Comparable)
-
<functional>
functors as predicates - Lambda functions
Video Timestamp Index
Homework
Solve the problems in Source.cpp attached below using the <algorithm> library and other parts of the standard library as extensively as possible. As a bonus problem, implement the sprite drawing effect shown at the end of the video using a lambda function.